ArrayList并发修改问题-ConcurrentModificationException(详解)
有一次用到ArrayList的时候
需要遍历整个ArrayList找到指定元素再删除
于是便产生了下面的代码
public class ListError {
public static void main(String[] args) {
ArrayList<Integer> arrayLists = new ArrayList<>();
arrayLists.add(new Integer(1));
arrayLists.add(new Integer(2));
arrayLists.add(new Integer(3));
arrayLists.add(new Integer(4));
arrayLists.add(new Integer(5));
arrayLists.add(new Integer(6));
arrayLists.add(new Integer(7));
arrayLists.add(new Integer(8));
for (Integer num:arrayLists) {
if(num.equals(new Integer(3))){
arrayLists.remove(new Integer(3));
}
}
}
}
然后就产生了下面的错误:
Exception in thread "main" java.util.ConcurrentModificationException
at java.util.ArrayList$Itr.checkForComodification(ArrayList.java:901)
at java.util.ArrayList$Itr.next(ArrayList.java:851)
at study.ListError.main(ListError.java:17)
程序抛出了ConcurrentModificationException并发修改异常 可以看到异常出现在checkForComodification方法中
查看ArraryList源码的checkForComodification方法
final void checkForComodification() {
if (ArrayList.this.modCount != this.expectedModCount) {
throw new ConcurrentModificationException();
}
}
}
观察ArraryList源码中的checkForComodification方法
可以发现
当ArrayList.this.modCount != this.expectedModCount的时候会抛出异常
下面来看为什么会出现这两个值不相等的情况
在这之前,我们需要知道一个小知识
foreach底层也是使用Iterator迭代器进行迭代的
所以,最上面的源码的根本实现就是迭代器也就是这样
public class ListError {
public static void main(String[] args) {
ArrayList<Integer> arrayLists = new ArrayList<>();
arrayLists.add(new Integer(1