util之Map

Posted qdu-lkc

tags:

篇首语:本文由小常识网(cha138.com)小编为大家整理,主要介绍了util之Map相关的知识,希望对你有一定的参考价值。

1.定义
Map<String, Integer> map = new HashMap<String,Integer>();

2.判断map中是否存在某个键的值:
if(map.get(s)==null) 

3.给map中某个键赋值:
map.put(s, value);

4.map的遍历:
法一:
Set<String> key = map.keySet();
        for(String k:key) {
            System.out.println(k+":"+map.get(k));
        }


法二:
        Iterator<String> it = key.iterator();
        while(it.hasNext()) {
            String s = it.next();
            System.out.println(s+":"+map.get(s));
     }

以上是关于util之Map的主要内容,如果未能解决你的问题,请参考以下文章

RabbitMq之优先队列

Java之List和Map的几种遍历方式

mybatis学习(39):动态sql片段

[ 原创 ] Map之HashMap的使用方法

js代码片段: utils/lcoalStorage/cookie

集合框架Map之KeySet方法的使用