下面代码展示了遍历Map时删除元素的正确方式和错误方式。

import java.util.HashMap;  
import java.util.Iterator;  
import java.util.Map;  
import java.util.Set;  
  
 
public class TestMapRemove {  
    public static void main(String[] args){  
        new TestMapRemove().removeByIterator();  
//        new TestMapRemove().removeBymap();  
    }  
    public void removeByIterator(){//正确的删除方式  
        HashMap<Integer, String> map = new HashMap<Integer, String>();  
        map.put(1, "one");  
        map.put(2, "two");  
        map.put(3, "three");  
        System.out.println(map);  
        Iterator<Map.Entry<Integer, String>> it = map.entrySet().iterator();  
        while(it.hasNext()){  
            Map.Entry<Integer, String> entry = it.next();  
            if(entry.getKey() == 2)  
                it.remove();//使用迭代器的remove()方法删除元素  
        }  
        System.out.println(map);  
    }  
    public void removeBymap(){//错误的删除方式  
        HashMap<Integer, String> map = new HashMap<Integer, String>();  
        map.put(1, "one");  
        map.put(2, "two");  
        map.put(3, "three");  
        System.out.println(map);  
        Set<Map.Entry<Integer, String>> entries = map.entrySet();  
        for(Map.Entry<Integer, String> entry : entries){  
            if(entry.getKey() == 2){  
                map.remove(entry.getKey());//ConcurrentModificationException  
            }  
        }  
        System.out.println(map);  
    }  
}  

相关文章:

  • 2022-12-23
  • 2022-03-06
  • 2021-10-16
  • 2021-08-19
  • 2022-12-23
  • 2022-12-23
  • 2022-03-09
  • 2021-10-26
猜你喜欢
  • 2022-12-23
  • 2020-02-29
  • 2022-12-23
  • 2021-10-16
  • 2022-02-06
  • 2021-08-10
  • 2022-12-23
相关资源
相似解决方案