ConcurrentModificationException并发修改异常

Posted 码上加油站

tags:

篇首语:本文由小常识网(cha138.com)小编为大家整理,主要介绍了ConcurrentModificationException并发修改异常相关的知识,希望对你有一定的参考价值。

A:ConcurrentModificationException出现:

/*Iterator it = list.iterator(); //获取迭代器

while(it.hasNext()) { //判断集合中是否有元素

String str = (String)it.next(); //向下转型

if("world".equals(str)) {

list.add("javaee"); 

//遍历的同时在增加元素,并发修改ConcurrentModificationException

}

}*/

 

B:解决方案

* a:迭代器迭代元素,迭代器修改元素(ListIterator的特有功能add)

* b:集合遍历元素,集合修改元素

以上是关于ConcurrentModificationException并发修改异常的主要内容,如果未能解决你的问题,请参考以下文章