ArrayList并发修改问题-ConcurrentModificationException(详解)

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
评论
添加红包

请填写红包祝福语或标题

红包个数最小为10个

红包金额最低5元

当前余额3.43前往充值 >
需支付:10.00
成就一亿技术人!
领取后你会自动成为博主和红包主的粉丝 规则
hope_wisdom
发出的红包
实付
使用余额支付
点击重新获取
扫码支付
钱包余额 0

抵扣说明:

1.余额是钱包充值的虚拟货币,按照1:1的比例进行支付金额的抵扣。
2.余额无法直接购买下载,可以购买VIP、付费专栏及课程。

余额充值