美文网首页
ConcurrentModificationException

ConcurrentModificationException

作者: 倩音流年 | 来源:发表于2018-01-24 09:41 被阅读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();
    }

    相关文章

      网友评论

          本文标题:ConcurrentModificationException

          本文链接:https://www.haomeiwen.com/subject/otqsaxtx.html