java.util.ConcurrentModificationException-->并发修改异常,在遍历集合过程中修改集合内容会抛出此异常。
解决方法:
for (Object entity : objectList){
//throw ConcurrentModificationException
objectList.remove(entity);
}
--->
for (Iterator<Object> it= objectList.iterator(); it.hasNext();){
it.next();
it.remove();
}
网友评论