标签:existing one str 使用 sof array 失败 hashmap tab
工作中,有时会遇到对list,map 进行循环赋值的情况,比如下面这种 会出现 concurrentMondificationException
List<Map<String, Object>> resultList = analysisOfpExcel(file, pollutants, 0); for (Map<String, Object> map : resultList) { for (Map.Entry entry : map.entrySet()) { map.put(entry.getKey() + "_ofp", multiply); } }
这种异常为 及时失败 出现这个问题的基本原因是: hashMap 再循环过程中,计数器变化就会 抛出这个异常。
如果不了解 hashmap 计数器 可以参考 hashMap 的put 方法 如下,源码为jdk 1.8
其中的 ++modCount 为计数器的变化
final V putVal(int hash, K key, V value, boolean onlyIfAbsent, boolean evict) { Node<K,V>[] tab; Node<K,V> p; int n, i; if ((tab = table) == null || (n = tab.length) == 0) n = (tab = resize()).length; if ((p = tab[i = (n - 1) & hash]) == null) tab[i] = newNode(hash, key, value, null); else { Node<K,V> e; K k; if (p.hash == hash && ((k = p.key) == key || (key != null && key.equals(k)))) e = p; else if (p instanceof TreeNode) e = ((TreeNode<K,V>)p).putTreeVal(this, tab, hash, key, value); else { for (int binCount = 0; ; ++binCount) { if ((e = p.next) == null) { p.next = newNode(hash, key, value, null); if (binCount >= TREEIFY_THRESHOLD - 1) // -1 for 1st treeifyBin(tab, hash); break; } if (e.hash == hash && ((k = e.key) == key || (key != null && key.equals(k)))) break; p = e; } } if (e != null) { // existing mapping for key V oldValue = e.value; if (!onlyIfAbsent || oldValue == null) e.value = value; afterNodeAccess(e); return oldValue; } } ++modCount; if (++size > threshold) resize(); afterNodeInsertion(evict); return null; }
解决办法 有三种:
1. 使用concurrent 包下的 ConcurrentHashMap,用ConcurrentHashMap 代替 HashMap 这里我也是用这种方法解决的,ConcurrentHashMap 提供了并发下对map 加锁的功能,锁为 分段锁,不了解的可以自行百度。
ConcurrentHashMap<String,Object> currentHashMap = new ConcurrentHashMap<>();
2. 使用结合累的clone() 方法,具体操作是 循环初始 集合 ,操作clone之后的集合。 这种写法消耗内存,如果集合很大的情况,需要在内存中 开辟一份一样的出来,不太建议。
3.对集合进行加锁操作。
List<String> list = Collections.synchronizedList(new ArrayList<>()); Map<String,Object> testMap = Collections.synchronizedMap(new HashMap<>());
集合遍历出现的 ConcurentMondificationException
标签:existing one str 使用 sof array 失败 hashmap tab
原文地址:https://www.cnblogs.com/yx9244/p/14254594.html