ConcurrentModificationException - HashMap

时间:2016-10-07 15:48:44

标签: java hashmap concurrentmodification

请考虑以下代码。

Map<Integer,String> map = new HashMap<Integer, String> (5);
map.put(1, "a");
map.put(2, null);
map.put(3, "b");
map.put(4, "e");
for (String str : map.values()) {
    if ("b".equals(str)) {
        map.put(5, "f");
    }
}
System.out.println(map.get(5));

会发生ConcurrentModificationException。在这种情况下,我理解我们无法修改我们正在迭代的集合。
但是,请考虑以下代码。我只删除map.put(4,"e");的一行。它会起作用!

Map<Integer,String> map = new HashMap<Integer, String> (5);
map.put(1, "a");
map.put(2, null);
map.put(3, "b");
for (String str : map.values()) {
    if ("b".equals(str)) {
        map.put(5, "f");
    }
}
System.out.println(map.get(5));


任何提示?为什么会这样?

1 个答案:

答案 0 :(得分:1)

“b”成为最后一个元素。

检查在迭代器的next方法中执行,不再调用它。