我想替换地图中的密钥。
我有以下代码:
Map<String, Object> map = new HashMap<String, Object>();
map.put("a", "1");
map.put("b", "2");
map.put("c", "3");
map.put("d", "4");
map.put("e", "5");
Iterator<Map.Entry<String, Object>> iterator = map.entrySet().iterator();
while (iterator.hasNext()) {
Map.Entry<String, Object> next = iterator.next();
Object o = next.getValue();
//how to add new element ?
//...
iterator.remove();
}
我想用键实现地图
a1->1
b2->2
c3->3
d4->4
e5->5
如果我在循环map.put(next.getKey() + next.getValue(), next.getValue());
中使用,则会导致ConcurrentModificationException
。
答案 0 :(得分:3)
要避免使用ConcurrentModificationException
,您需要将新的键/值对添加到单独的地图中,然后使用putAll
将该地图添加到原始地图中。
Map<String, Object> newMap = new HashMap<>();
while (iterator.hasNext()) {
Map.Entry<String, Object> entry = iterator.next();
iterator.remove();
newMap.put(...); // Whatever logic to compose new key/value pair.
}
map.putAll(newMap);