HashMap的遍歷刪除方法有以下幾種:
Iterator<Map.Entry<K, V>> iterator = map.entrySet().iterator();
while (iterator.hasNext()) {
Map.Entry<K, V> entry = iterator.next();
if (需要刪除的條件) {
iterator.remove();
}
}
map.entrySet().removeIf(entry -> 需要刪除的條件);
for (Map.Entry<K, V> entry : map.entrySet()) {
if (需要刪除的條件) {
map.remove(entry.getKey());
}
}
其中,第一種和第二種方法是比較常用的,推薦使用。在遍歷刪除時,需要注意不要直接使用map的remove方法,而是通過迭代器或者removeIf方法來刪除元素,以避免ConcurrentModificationException異常。