上代码先
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();
}
本文标题:java中List删除报错 java.util.Concurre
本文链接:https://www.haomeiwen.com/subject/lcippftx.html
网友评论