ConcurrentModificationException

2018-01-24  本文已影响3人  倩音流年

 java.util.ConcurrentModificationException-->并发修改异常,在遍历集合过程中修改集合内容会抛出此异常。

解决方法:

for (Object entity : objectList){
    //throw ConcurrentModificationException
    objectList.remove(entity);
}
--->
for (Iterator<Object> it= objectList.iterator(); it.hasNext();){
    it.next();
    it.remove();
}
上一篇下一篇

猜你喜欢

热点阅读