遍历Map的写法总结

这篇博客探讨了Java中Map的四种遍历方式:entrySet()、迭代、keySet和Lambda表达式,并通过1千万条数据的测试,比较了它们的执行效率。entrySet()在1千万数据遍历中用时0.193秒,而Lambda表达式用时最长,为0.224秒。
摘要由CSDN通过智能技术生成

1、entrySet(),效率高,常用,推荐
for(Map.Entry<String, String> entry:map.entrySet()){
System.out.println(entry.getKey()+"—>"+entry.getValue());
}
2、迭代
Set set = map.entrySet();
Iterator i = set.iterator();
while(i.hasNext()){
Map.Entry<String, String> entry1=(Map.Entry<String, String>)i.next();
System.out.println(entry1.getKey()+"=="+entry1.getValue());
}
3、keySet\value 方便
for (String str: map.values()) { //获取值
System.out.println(“value:” + str);
}
for (String str: map.keySet()) {//获取key
System.out.println(“key:” + str + “,value:” + map.get(str));
}
4、Lambda,最简洁
map.foreach((key,map) -> {
System.out.println(key + “:” + value);
})

测试:

public static void main(String[] args) {
    Map<String,String> map = new HashMap<>();
    //1千万条数据遍历
    for (int i = 0; i < 10000000; i++) {
        map.put(i+"", "1");
    }
    long startTime1=System.currentTimeMillis();

    for(Map.Entry<String, String> entry:map.entrySet()){
        //System.out.println(entry.getKey()+"--->"+entry.getValue());
    }

    long endTime1=System.currentTimeMillis();
    float excTime1=(float)(endTime1-startTime1)/1000;
    System.out.println("entrySet()执行时间:"+excTime1+"s");


    long startTime2=System.currentTimeMillis();

    Set set = map.entrySet();
    Iterator i = set.iterator();
    while(i.hasNext()){
        Map.Entry<String, String> entry1=(Map.Entry<String, String>)i.next();
        //System.out.println(entry1.getKey()+"=="+entry1.getValue());
    }

    long endTime2=System.currentTimeMillis();
    float excTime2=(float)(endTime2-startTime2)/1000;
    System.out.println("Iterator执行时间:"+excTime2+"s");



    long startTime3=System.currentTimeMillis();

    for (Object str: map.keySet()) {
        //System.out.println("key:" + str + ",value:" + map.get(str));
    }

    long endTime3=System.currentTimeMillis();
    float excTime3=(float)(endTime3-startTime3)/1000;
    System.out.println("keySet执行时间:"+excTime3+"s");


    long startTime4=System.currentTimeMillis();

    map.forEach((key,value) -> {
        //System.out.println(key + ":" + value);
    });

    long endTime4=System.currentTimeMillis();
    float excTime4=(float)(endTime4-startTime4)/1000;
    System.out.println("forEach执行时间:"+excTime4+"s");
}

结果
entrySet()执行时间:0.193s
Iterator执行时间:0.176s
keySet执行时间:0.177s
forEach执行时间:0.224s

评论
添加红包

请填写红包祝福语或标题

红包个数最小为10个

红包金额最低5元

当前余额3.43前往充值 >
需支付:10.00
成就一亿技术人!
领取后你会自动成为博主和红包主的粉丝 规则
hope_wisdom
发出的红包
实付
使用余额支付
点击重新获取
扫码支付
钱包余额 0

抵扣说明:

1.余额是钱包充值的虚拟货币,按照1:1的比例进行支付金额的抵扣。
2.余额无法直接购买下载,可以购买VIP、付费专栏及课程。

余额充值