java迭代器循環(huán)刪除的方法是什么

小億
178
2023-08-26 07:36:31

在Java中,迭代器循環(huán)刪除元素有兩種常用的方法:

  1. 使用Iterator的remove()方法:迭代器的remove()方法可以刪除當(dāng)前迭代的元素,并且保持迭代器的狀態(tài)。例如:
Iterator<String> iterator = list.iterator();
while (iterator.hasNext()) {
String element = iterator.next();
if (element.equals("要?jiǎng)h除的元素")) {
iterator.remove();
}
}
  1. 使用List的removeIf()方法:List接口提供了removeIf()方法,可以根據(jù)指定的條件刪除元素。該方法會(huì)迭代整個(gè)列表,并刪除滿足條件的元素。例如:
list.removeIf(element -> element.equals("要?jiǎng)h除的元素"));

這兩種方法都可以在迭代過(guò)程中刪除元素,但需要注意的是,直接使用List的remove()方法刪除元素可能會(huì)導(dǎo)致ConcurrentModificationException異常,因此推薦使用迭代器的remove()方法或List的removeIf()方法來(lái)刪除元素。

0