java中List删除报错 java.util.Concurre
2018-07-15 本文已影响0人
左洁
上代码先
list中数据是不能在原有集合修改,需要循环删除list中多个元素的,应该使用迭代器iterator方式,不然会报错
Iterator it = list.iterator();
while (it.hasNext()){
it.next();
it.remove();
}
上代码先
list中数据是不能在原有集合修改,需要循环删除list中多个元素的,应该使用迭代器iterator方式,不然会报错
Iterator it = list.iterator();
while (it.hasNext()){
it.next();
it.remove();
}