码迷,mamicode.com
首页 > 其他好文 > 详细

For循环List中删除正确的方式

时间:2016-07-05 20:34:02      阅读:144      评论:0      收藏:0      [点我收藏+]

标签:

单线程
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中删除正确的方式

标签:

原文地址:http://www.cnblogs.com/hansongjiang/p/5644723.html

(0)
(0)
   
举报
评论 一句话评论(0
登录后才能评论!
© 2014 mamicode.com 版权所有  联系我们:gaon5@hotmail.com
迷上了代码!