android HashMap的几种遍历方法

HashMap的几种遍历方法

1、第一种:

   Map map = new HashMap();
   Set keys = map.keySet();
   Iterator iterator = keys.iterator();
   while (iterator.hasNext()) {
        String key = iterator.next();
        ArrayList arrayList = map.get(key);
        for (Object o : arrayList) {
            System.out.println(o + "遍历过程");
        }
     //这里需要注意一点,如果你想对该Map进行删除操作的话,代码如下:
     iterator.remove();
     //如果使用 map.remove(key) 会报以下异常:java.util.ConcurrentModificationException }

 

2、第二种:

    Map tempMap = new HashMap();
    tempMap.put("a", 1);
    tempMap.put("b", 2);
    tempMap.put("c", 3);
    for (String o : tempMap.keySet()) {
        System.out.println("key=" + o + " value=" + tempMap.get(o));
    }

 

3、第三种:

    Map tempMap = new HashMap();
    tempMap.put("a", 1);
    tempMap.put("b", 2);
    tempMap.put("c", 3);
    for (Iterator i = tempMap.keySet().iterator(); i.hasNext();) {
        String obj = i.next();
        System.out.println(obj);// 循环输出key
        System.out.println("key=" + obj + " value=" + tempMap.get(obj));
    }

 

 

转载于:https://www.cnblogs.com/fly-allblue/p/3867852.html

你可能感兴趣的:(android HashMap的几种遍历方法)