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异常。