在Java中,迭代器循環(huán)刪除元素有兩種常用的方法:
Iterator<String> iterator = list.iterator();
while (iterator.hasNext()) {
String element = iterator.next();
if (element.equals("要?jiǎng)h除的元素")) {
iterator.remove();
}
}
list.removeIf(element -> element.equals("要?jiǎng)h除的元素"));
這兩種方法都可以在迭代過(guò)程中刪除元素,但需要注意的是,直接使用List的remove()方法刪除元素可能會(huì)導(dǎo)致ConcurrentModificationException異常,因此推薦使用迭代器的remove()方法或List的removeIf()方法來(lái)刪除元素。