@Test
public void testHashMap1() {
Map map = new HashMap<>();
map.put(001, "语文");
map.put(002, "数学");
map.put(003, "英语");
System.out.println(map);
Iterator iterator = map.keySet().iterator();
while (iterator.hasNext()) {
Integer key = iterator.next();
String value = map.get(key);
System.out.println("key = " + key + ", value = " + value);
}
}
@Test
public void testHashMap2() {
Map map = new HashMap<>();
map.put(001, "语文");
map.put(002, "数学");
map.put(003, "英语");
System.out.println(map);
Iterator> entries = map.entrySet().iterator();
while (entries.hasNext()) {
Map.Entry entry = entries.next();
System.out.println(entry);
}
}
@Test
public void testHashMap3() {
Map map = new HashMap<>();
map.put(001, "语文");
map.put(002, "数学");
map.put(003, "英语");
System.out.println(map);
for (Integer key : map.keySet()) {
System.out.println("key = " + key + ", value = " + map.get(key));
}
}
@Test
public void testHashMap4() {
Map map = new HashMap<>();
map.put(001, "语文");
map.put(002, "数学");
map.put(003, "英语");
System.out.println(map);
for (Map.Entry entry : map.entrySet()) {
System.out.println("key = " + entry.getKey() + ", value = " + entry.getValue());
}
}
@Test
public void testHashMap5() {
Map map = new HashMap<>();
map.put(001, "Java");
map.put(002, "数据库");
map.put(003, "Vue");
System.out.println(map);
map.forEach((k, v) -> System.out.println("key = " + k + ", value = " + v));
}
foreach源码如图所示:
default void forEach(BiConsumer super K, ? super V> action) {
Objects.requireNonNull(action);
for (Map.Entry entry : entrySet()) {
K k;
V v;
try {
k = entry.getKey();
v = entry.getValue();
} catch(IllegalStateException ise) {
throw new ConcurrentModificationException(ise);
}
action.accept(k, v);
}
}
从源码可以看到,这种新特性就是在传统的迭代方式上加了一层壳,但是让代码变得更加简单。
推荐使用 entrySet 遍历 Map 类集合 KV
(文章中的第四种方式),而不是 keySet 方式进行遍历。
keySet 其实是遍历了 2 次,第一次是转为 Iterator 对象,第二次是从 hashMap 中取出 key 所对应的 value 值。而 entrySet 只是遍历了一次,就把 key 和 value 都放到了 entry 中,效率更高。values() 返回的是 V 值集合,是一个 list 集合对象;keySet() 返回的是 K 值集合,是一个 Set 集合对象;entrySet() 返回的是 K-V 值组合集合。
如果是 JDK8,推荐使用Map.forEach 方法
(文章中的第五种方式)。