For循环List中删除正确的方式
Posted 技术宅张小二的小窝
tags:
篇首语:本文由小常识网(cha138.com)小编为大家整理,主要介绍了For循环List中删除正确的方式相关的知识,希望对你有一定的参考价值。
单线程
public class Test { public static void main(String[] args) { ArrayList<Integer> list = new ArrayList<Integer>(); list.add(2); Iterator<Integer> iterator = list.iterator(); while(iterator.hasNext()){ Integer integer = iterator.next(); if(integer==2) iterator.remove(); //注意这个地方 } } }
多线程
使用 使用并发容器CopyOnWriteArrayList
以上是关于For循环List中删除正确的方式的主要内容,如果未能解决你的问题,请参考以下文章