欢迎您访问程序员文章站本站旨在为大家提供分享程序员计算机编程知识!
您现在的位置是: 首页

ConcurrentModificationException and a HashMap

程序员文章站 2024-01-21 10:46:46
...
Iterator it = map.entrySet().iterator();while(it.hasNext()){Entry item = it.next();
   map.remove(item.getKey());}

这种方法会出现错误

 

正确的删除办法是

Iterator it = map.entrySet().iterator();

   while (it.hasNext())

   {

      Entry item = it.next();

      it.remove();

   }

 

 

 

相关标签: java