JAVA对Map遍历的9种方式

一、通过entrySet来遍历

1、通过 for 和 map.entrySet() 来遍历

public static void testMap1(Map map) {
    long sum = 0;
    for (Map.Entry entry : map.entrySet()) {
      sum += entry.getKey() + entry.getValue();
    }
    System.out.println(sum);
  }

2、通过 for, Iterator 和 map.entrySet() 来遍历

public static void testMap2(Map map) {
    long sum = 0;
    for (Iterator> entries = map.entrySet().iterator(); entries.hasNext(); ) {
      Map.Entry entry = entries.next();
      sum += entry.getKey() + entry.getValue();
    }
    System.out.println(sum);
  }

3、通过 while,Iterator 和 map.entrySet() 来遍历

 public static void testMap3(Map map) {
    Iterator> it = map.entrySet().iterator();
    long sum = 0;
    while (it.hasNext()) {
      Map.Entry entry = it.next();
      sum += entry.getKey() + entry.getValue();
    }
    System.out.println(sum);
  }

二、通过 keySet 来遍历

我们可以看到这种方式相对于 map.entrySet() 方式,多了一步 get 的操作,这种场景比较适合我们只需要 key 的场景,如果也需要使用 value 的场景不建议使用 map.keySet() 来进行遍历,因为会多一步 map.get() 的操作。

4、通过 for 和 map.keySet() 来遍历

public static void testMap4(Map map) {
    long sum = 0;
    for (Integer key : map.keySet()) {
      sum += key + map.get(key);
    }
    System.out.println(sum);
  }

5、通过 for,Iterator 和 map.keySet() 来遍历

public static void testMap5(Map map) {
    long sum = 0;
    for (Iterator key = map.keySet().iterator(); key.hasNext(); ) {
      Integer k = key.next();
      sum += k + map.get(k);
    }
    System.out.println(sum);
  }

6、通过 while,Iterator 和 map.keySet() 来遍历

public static void testMap6(Map map) {
    Iterator it = map.keySet().iterator();
    long sum = 0;
    while (it.hasNext()) {
      Integer key = it.next();
      sum += key + map.get(key);
    }
    System.out.println(sum);
  }

三、Java 8 的遍历方式

7、通过 map.forEach() 来遍历

public static void testMap7(Map map) {
    final long[] sum = {0};
    map.forEach((key, value) -> {
      sum[0] += key + value;
    });
    System.out.println(sum[0]);
  }

8、Stream 遍历

public static void testMap8(Map map) {
    long sum = map.entrySet().stream().mapToLong(e -> e.getKey() + e.getValue()).sum();
    System.out.println(sum);
  }

9、ParallelStream 遍历

 public static void testMap9(Map map) {
    long sum = map.entrySet().parallelStream().mapToLong(e -> e.getKey() + e.getValue()).sum();
    System.out.println(sum);
  }

这两种遍历方式都是 JDK 8 的 Stream 遍历方式,stream 是普通的遍历,parallelStream 是并行流遍历,在某些场景会提升性能,但是也不一定。

四、测试代码

为了避免一些干扰,这里通过外层的 for 来进行多次计算,然后求平均值

public static void main(String[] args) {
   int outSize = 1;
    int mapSize = 200;
    Map map = new HashMap<>(mapSize);
    for (int i = 0; i < mapSize; i++) {
      map.put(i, i);
    }
    System.out.println("---------------start------------------");
    long totalTime = 0;
    for (int size = outSize; size > 0; size--) {
      long startTime = System.currentTimeMillis();
      testMap1(map);
      totalTime += System.currentTimeMillis() - startTime;
    }
    System.out.println("testMap1 avg time is :" + (totalTime / outSize));
  // 省略其他方法,代码跟上面一致
}

总结

从上面的例子来看,当我们的集合数量很少的时候,基本上普通的遍历就可以搞定,不需要使用 JDK 8 的高级 API 来进行遍历,当我们的集合数量较大的时候,就可以考虑采用 JDK 8 的 forEach 或者 Stream 来进行遍历,这样的话效率更高。在普通的遍历方法中 entrySet() 的方法要比使用 keySet() 的方法好。

你可能感兴趣的:(java,java)