当前位置:   article > 正文

HashMap遍历几种方式比较(传统的Map迭代方式对比JDK8的迭代方式)_map迭代方式比对

map迭代方式比对

HashMap 遍历

在这里插入图片描述

HashMap 遍历从大的方向来说,可分为以下 4 类:

迭代器(Iterator)方式遍历;
For Each 方式遍历;
Lambda 表达式遍历(JDK 1.8+);
Streams API 遍历(JDK 1.8+)。
但每种类型下又有不同的实现方式,因此具体的遍历方式又可以分为以下 7 种:

使用迭代器(Iterator)EntrySet 的方式进行遍历;
使用迭代器(Iterator)KeySet 的方式进行遍历;
使用 For Each EntrySet 的方式进行遍历;
使用 For Each KeySet 的方式进行遍历;
使用 Lambda 表达式的方式进行遍历;
使用 Streams API 单线程的方式进行遍历;
使用 Streams API 多线程的方式进行遍历。

		//ForEach EntrySet
        for (Map.Entry<String,String> me :resultMap.entrySet()){
   
            System.out.println("EntrySet "+me.getKey() +" = "+ me.getValue());
        }
        //ForEach keySet
        for (String key : resultMap.keySet()){
   
            System.out.println("keySet "+key +" = "+ resultMap.get(key));
        }
        //Lambda forEach
        resultMap.forEach((key,value) -> {
            System.out.println("Lambda forEach " + key +" = "+value);
       });
        //Streams API 单线程
        resultMap.entrySet().stream().forEach((entry)->{
            System.out.println("Streams API 单线程 " + entry.getKey() +" = "+entry.getValue());
        });
        //Streams API 多线程
        resultMap.entrySet().parallelStream
  • 1
  • 2
  • 3
  • 4
  • 5
  • 6
  • 7
  • 8
  • 9
  • 10
  • 11
  • 12
  • 13
  • 14
  • 15
  • 16
  • 17
  • 18
  • 19
声明:本文内容由网友自发贡献,不代表【wpsshop博客】立场,版权归原作者所有,本站不承担相应法律责任。如您发现有侵权的内容,请联系我们。转载请注明出处:https://www.wpsshop.cn/w/IT小白/article/detail/564561
推荐阅读
相关标签
  

闽ICP备14008679号