- package net.nie.test;
-
- import java.util.HashMap;
- import java.util.Iterator;
- import java.util.Map;
-
- public class HashMapTest {
- private static Map<Integer, String> map=new HashMap<Integer,String>();
-
-
- public static void main(String[] args) {
- map.put(1,"one");
- map.put(2,"two");
- map.put(3,"three");
- map.put(4,"four");
- map.put(5,"five");
- map.put(6,"six");
- map.put(7,"seven");
- map.put(8,"eight");
- map.put(5,"five");
- map.put(9,"nine");
- map.put(10,"ten");
- Iterator<Map.Entry<Integer, String>> it = map.entrySet().iterator();
- while(it.hasNext()){
- Map.Entry<Integer, String> entry=it.next();
- int key=entry.getKey();
- if(key%2==1){
- System.out.println("delete this: "+key+" = "+key);
-
-
- it.remove();
- }
- }
-
- System.out.println("-------\n\t最终的map的元素遍历:");
- for(Map.Entry<Integer, String> entry:map.entrySet()){
- int k=entry.getKey();
- String v=entry.getValue();
- System.out.println(k+" = "+v);
- }
- }
- }
基本类型,不会有异常。
List 在
(1). 使用索引遍历的时候删除不会有异常,但是后续的数据可能会有问题;
(2). List用增强的for循环遍历时:会报告异常java.util.ConcurrentModificationException
(删除完立马break的除外)
(3). 迭代器迭代时,使用迭代器iterator.remove()不会有问题。
Java 遍历Map时 删除元素
原文:http://www.cnblogs.com/dongrilaoxiao/p/6676482.html