集合之并发修改异常(ConcurrentModificationException)
tips:集合之并发修改异常(ConcurrentModificationException)
1-背景
在用迭代器遍历一个集合对象时,如果遍历过程中对集合对象的内容进行了修改(增加、删除、修改),则会抛出ConcurrentModificationException。
2-原理
迭代器在遍历时会直接访问集合中的内容,并且在遍历过程中使用一个 modCount 变量。集合在被遍历期间如...
原创
2020-01-13 16:24:33 ·
440 阅读 ·
0 评论