美文网首页
循环删除list中元素的方法

循环删除list中元素的方法

作者: 清风笑_e92c | 来源:发表于2018-06-04 15:32 被阅读0次

Iterator it = list.iterator();while(it.hasNext()){

    String x = it.next();

    if(x.equals("del")){

        it.remove();

    }

}

使用iterator的remove方法,如果用list的remove方法同样会报上面提到的ConcurrentModificationException错误。

相关文章

网友评论

      本文标题:循环删除list中元素的方法

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