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;
}

相关文章

最近看了一下学习资料,感觉进制转换其实还是挺有意思的,尤...
/*HashSet 基本操作 * --set:元素是无序的,存入和取出顺序不...
/*list 基本操作 * * List a=new List(); * 增 * a.add(inde...
/* * 内部类 * */ 1 class OutClass{ 2 //定义外部类的成员变...
集合的操作Iterator、Collection、Set和HashSet关系Iterator...
接口中常量的修饰关键字:public,static,final(常量)函数...