Map集合遍历的方式(以HashMap为例)
环境:jdk1.8
HashMap的遍历方式有多种,下面将会一一列出。
首先我们先在HashMap中添加几个键值对。
HashMap<Integer, String> map = new HashMap<>();
map.put(1,"Apple"); map.put(2,"Orange"); map.put(3,"Pear"); map.put(4,"Banana");
第一种:使用迭代器遍历。
Iterator<Integer> it = map.keySet().iterator(); while(it.hasNext()){ System.out.println(map.get(it.next())); }
第二种:增强for循环方式。
for(int k : map.keySet()){ System.out.println(k+""+map.get(k)); }
第三种:Map.entrySet遍历key和value。
for(Map.Entry<Integer ,String> e: map.entrySet()){ System.out.println(e.getKey()+""+e.getValue()); }
第四种:利用java8的新特性(lambda表达式)
map.forEach((k,v)-> System.out.println(k+" "+v));