ConcurrentModificationException异常

ConcurrentModificationException异常:

    java中的Map如果在遍历过程中要删除元素,除非通过迭代器自己remove()方法,否则就会导致抛出ConcurrentModificationException异常。
  • 错误的遍历方式:
public void removeBymap(){//错误的删除方式
        HashMap map = new HashMap();
        map.put(1, "one");
        map.put(2, "two");
        map.put(3, "three");
        System.out.println(map);
        Set> entries = map.entrySet();
        for(Map.Entry entry : entries){
            if(entry.getKey() == 2){
                map.remove(entry.getKey());//ConcurrentModificationException
            }
        }
        System.out.println(map);
    }
  • 正确的遍历方式
 public void removeByIterator(){//正确的删除方式
        HashMap map = new HashMap();
        map.put(1, "one");
        map.put(2, "two");
        map.put(3, "three");
        System.out.println(map);
        Iterator> it = map.entrySet().iterator();
        while(it.hasNext()){
            Map.Entry entry = it.next();
            if(entry.getKey() == 2)
                it.remove();//使用迭代器的remove()方法删除元素
        }
        System.out.println(map);
    }

你可能感兴趣的:(ConcurrentModificationException异常)