如果满足条件,我需要从列表中删除一些对象。
但我越来越java.util.ConcurrentModificationException
。
这是我的代码:
collegeList.addAll(CollegeManager.findByCollegeID(stateCode, districtCode));
for(College clg:collegeList){
if(!clg.approve()){
collegeList.remove(clg);
}
}