HashMap是一個線程不安全的集合,若是在遍歷的過程當中同時對該集合進行修改操做,例如put,add,remove等,
會拋出java.util.ConcurrentModificationException異常,那麼究竟這個異常爲什麼拋出,下面從源碼層面來分析一下。
查看HashMap源碼,具體拋該異常的地方爲:java
final Node<K,V> nextNode() { Node<K,V>[] t; Node<K,V> e = next; if (modCount != expectedModCount) throw new ConcurrentModificationException(); if (e == null) throw new NoSuchElementException(); if ((next = (current = e).next) == null && (t = table) != null) { do {} while (index < t.length && (next = t[index++]) == null); } return e; }
若是HashMap中modCount和expectedModCount不相等,則會拋出異常node
具體用途是記錄該HashMap修改次數,好比在對一個HashMap put操做時,會對modCount進行++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; }
而在remove操做的時候,也會對modCount進行一樣的操做:app
final Node<K,V> removeNode(int hash, Object key, Object value, boolean matchValue, boolean movable) { Node<K,V>[] tab; Node<K,V> p; int n, index; if ((tab = table) != null && (n = tab.length) > 0 && (p = tab[index = (n - 1) & hash]) != null) { Node<K,V> node = null, e; K k; V v; if (p.hash == hash && ((k = p.key) == key || (key != null && key.equals(k)))) node = p; else if ((e = p.next) != null) { if (p instanceof TreeNode) node = ((TreeNode<K,V>)p).getTreeNode(hash, key); else { do { if (e.hash == hash && ((k = e.key) == key || (key != null && key.equals(k)))) { node = e; break; } p = e; } while ((e = e.next) != null); } } if (node != null && (!matchValue || (v = node.value) == value || (value != null && value.equals(v)))) { if (node instanceof TreeNode) ((TreeNode<K,V>)node).removeTreeNode(this, tab, movable); else if (node == p) tab[index] = node.next; else p.next = node.next; ++modCount; --size; afterNodeRemoval(node); return node; } } return null; }
它是HashIterator中的一個變量,在對HashMap迭代的時候,將modCount賦給expectedModCount,具體代碼:this
HashIterator() { expectedModCount = modCount; Node<K,V>[] t = table; current = next = null; index = 0; if (t != null && size > 0) { // advance to first entry do {} while (index < t.length && (next = t[index++]) == null); } }
查看HashMap entrySet()源碼: spa
public Set<Map.Entry<K,V>> entrySet() { Set<Map.Entry<K,V>> es; return (es = entrySet) == null ? (entrySet = new EntrySet()) : es; }
此處新建一個EntrySet對象,而在對EntrySet進行迭代的時候,會調用:線程
public final Iterator<Map.Entry<K,V>> iterator() { return new EntryIterator(); }
新建一個EntryIterator對象,查看該類描述:code
final class EntryIterator extends HashIterator implements Iterator<Map.Entry<K,V>> { public final Map.Entry<K,V> next() { return nextNode(); } }
它繼承HashIterator,所以在new EntryIterator()的時候會默認調用它父類HashIterator的無參構造方法。對象
HashMap迭代遍歷的時候,會初始化expectedModCount=modCount,這時候對HashMap進行修改操做,modCount會+1,繼續遍歷的時候expectedModCount!=modCount,繼而拋出java.util.ConcurrentModificationException異常。 blog