微信公众号搜"智元新知"关注
微信扫一扫可直接关注哦!

java – 它不会抛出异常ConcurrentModificationException

我有下面的代码,我会期望它抛出一个ConcurrentModificationException,但它运行成功.为什么会发生这种情况?
public void fun(){
    List <Integer>lis = new ArrayList<Integer>();
    lis.add(1);
    lis.add(2);

    for(Integer st:lis){
        lis.remove(1);
        System.out.println(lis.size());
    }
}

public static void main(String[] args) {
    test t = new test();
    t.fun();
}

解决方法

List上的remove(int)方法删除指定位置的元素.在开始循环之前,您的列表如下所示:
[1,2]

然后在列表中启动一个迭代器:

[1,2]
 ^

您的for循环然后删除位置1的元素,它是数字2:

[1]
 ^

迭代器在下一个隐含的hasNext()调用中返回false,循环终止.

如果您向列表中添加更多元素,则会得到ConcurrentModificationException.那么隐含的next()将会抛出.

作为一个注释,从Javadoc的ArrayList从JCF:

Note that the fail-fast behavior of an iterator cannot be guaranteed as it is,generally speaking,impossible to make any hard guarantees in the presence of unsynchronized concurrent modification. fail-fast iterators throw ConcurrentModificationException on a best-effort basis. Therefore,it would be wrong to write a program that depended on this exception for its correctness: the fail-fast behavior of iterators should be used only to detect bugs.

这可能实际上是Oracle ArrayList迭代器实现中的一个错误; hasNext()不检查修改

public boolean hasNext() {
    return cursor != size;
}

原文地址:https://www.jb51.cc/java/125301.html

版权声明:本文内容由互联网用户自发贡献,该文观点与技术仅代表作者本人。本站仅提供信息存储空间服务,不拥有所有权,不承担相关法律责任。如发现本站有涉嫌侵权/违法违规的内容, 请发送邮件至 dio@foxmail.com 举报,一经查实,本站将立刻删除。

相关推荐