当前位置:   article > 正文

Java中Map高效率遍历的方式_map遍历效率最高

map遍历效率最高

遍历Map的方式有很多,通常场景下我们需要的是遍历Map中的Key和Value,那么推荐使用的、效率最高的方式是:

 public static void main(String[] args) {
        HashMap<String, String> map = new HashMap<String, String>();
        map.put("aaa", "111");
        map.put("bbb", "222");
        map.put("ccc", "333");
        //使用迭代器遍历Map
        Iterator<Map.Entry<String, String>> iter = map.entrySet().iterator();
        while (iter.hasNext()) {
            Map.Entry<String, String> entry = iter.next();
            System.out.println(entry.getKey() + "\t" + entry.getValue());
        }
    }
  • 1
  • 2
  • 3
  • 4
  • 5
  • 6
  • 7
  • 8
  • 9
  • 10
  • 11
  • 12

常见遍历方式:

1)keySet()方式遍历【效率低】
注意:通过键找值遍历,这种方式的效率比较低,因为本身从键取值是耗时的操作。

 public static void main(String[] args) {
        HashMap<String, String> map = new HashMap<String, String>();
        map.put("aaa", "111");
        map.put("bbb", "222");
        map.put("ccc", "333");
        for (String key : map.keySet()) {
            String value = map.get(key);
            System.out.println("KeySet() : key :" + key + "---> value :" + value);
        }
    }
  • 1
  • 2
  • 3
  • 4
  • 5
  • 6
  • 7
  • 8
  • 9
  • 10

2)for循环Entry遍历【最常见和最常用的】

 public static void main(String[] args) {
        HashMap<String, String> map = new HashMap<String, String>();
        map.put("aaa", "111");
        map.put("bbb", "222");
        map.put("ccc", "333");
        for (Map.Entry<String, String> entry : map.entrySet()) {
             System.out.println("Entry : key :" + entry.getKey() + "---> value :"+entry.getValue());
        }
    }
  • 1
  • 2
  • 3
  • 4
  • 5
  • 6
  • 7
  • 8
  • 9

3)for-each 循环遍历 key 或者 values
注意:一般适用于只需要 Map 中的 key 或者 value 时使用。性能上比 entrySet 较好。

public static void main(String[] args) {
        HashMap<String, String> map = new HashMap<String, String>();
        map.put("aaa", "111");
        map.put("bbb", "222");
        map.put("ccc", "333");
        // 打印键集合
        for (String key : map.keySet()) {
            System.out.println(key);
        }
        // 打印值集合
        for (String value : map.values()) {
            System.out.println(value);
        }
    }
  • 1
  • 2
  • 3
  • 4
  • 5
  • 6
  • 7
  • 8
  • 9
  • 10
  • 11
  • 12
  • 13
  • 14
声明:本文内容由网友自发贡献,不代表【wpsshop博客】立场,版权归原作者所有,本站不承担相应法律责任。如您发现有侵权的内容,请联系我们。转载请注明出处:https://www.wpsshop.cn/w/我家小花儿/article/detail/564713
推荐阅读
相关标签
  

闽ICP备14008679号