码迷,mamicode.com
首页 > 编程语言 > 详细

java.util.ConcurrentModificationException异常处理

时间:2016-05-28 17:49:17      阅读:185      评论:0      收藏:0      [点我收藏+]

标签:


ConcurrentModificationException异常处理


  ConcurrentModificationException异常是Iterator遍历ArrayList或者HashMap数组时,通过代码修改了数组的大小,而Iterator(Object ele=it.next())会检查数组的size(),当数组的大小变化时,就会产生ConcurrentModificationException异常。 

 for(Integer x : list){
     if(x % 2 == 0)
         list.remove(x);  //此句会修改list的size(),当进入下一次for循环就会抛出异常
 }

  解决办法是通过Iterator修改list。

 Iterator<Integer> itr = list.iterator();
      while(itr.hasNext()){
           if(itr.next() % 2 == 0)   //itr.next()返回迭代器刚越过的元素的引用,返回值是Object,需要强制转换成自己需要的类型
               itr.remove();         //删除迭代器刚越过的元素
 }

 关于Java的Iterator的详细讲解见:http://cmsblogs.com/?p=1185

java.util.ConcurrentModificationException异常处理

标签:

原文地址:http://www.cnblogs.com/zhanglei93/p/5537862.html

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