首页 > 其他 > 详细

在foreach循环中使用remove报ConcurrentModificationException异常原因

时间:2019-08-03 21:40:59      阅读:159      评论:0      收藏:0      [点我收藏+]

在foreach循环中使用remove报ConcurrentModificationException异常原因

我的代码具体是这样的

   int dindex=0;
                    int did=getInt("请输入需要删除的学生学号:");
                    for (Student student:list) {
                        if(student.id==did){
                            list.remove(student);
                        }
                    }

 

这样会导致remove后,导致list在循环中下标和实际已经被修改后的下标不一致

 

我自己的解决方案是:

int dindex=-1;
                    int did=getInt("请输入需要删除的学生学号:");
                    for (Student student:list) {
                        if(student.id==did){
                            dindex=list.indexOf(student);
                        }
                    }
                    if(dindex!=-1)
                        list.remove(dindex);
                    else
                        System.out.println("没有此学生");

记录下标 不改变list本身 等foreach结束后,再删除

在foreach循环中使用remove报ConcurrentModificationException异常原因

原文:https://www.cnblogs.com/7-30-onlyone/p/11296318.html

(0)
(0)
   
举报
评论 一句话评论(0
关于我们 - 联系我们 - 留言反馈 - 联系我们:wmxa8@hotmail.com
© 2014 bubuko.com 版权所有
打开技术之扣,分享程序人生!