Iterator it = list.iterator();while(it.hasNext()){
String x = it.next();
if(x.equals("del")){
it.remove();
}
}
使用iterator的remove方法,如果用list的remove方法同样会报上面提到的ConcurrentModificationException错误。
Iterator it = list.iterator();while(it.hasNext()){
String x = it.next();
if(x.equals("del")){
it.remove();
}
}
使用iterator的remove方法,如果用list的remove方法同样会报上面提到的ConcurrentModificationException错误。
本文标题:循环删除list中元素的方法
本文链接:https://www.haomeiwen.com/subject/swhysftx.html
网友评论