Map遍历KeySet()和EntrySet/ Map.forEach的性能分析

本文通过实验分析了Java中Map遍历的三种常见方式——keySet、entrySet和forEach的性能,发现当键值对数量较大时,entrySet和forEach在效率上优于keySet,尤其在10000K数据量下,entrySet和forEach分别用时202ms和190ms。建议在遍历Map时优先选择entrySet,对于JDK8及更高版本,推荐使用forEach。

摘要生成于 C知道 ,由 DeepSeek-R1 满血版支持, 前往体验 >

一、目的

       在我们编写Java代码的过程中,Map是我们常用的存储数据的类型,因为他的查询效率非常的高。如果想要遍历Map的话,是使用keySet()方法,是entrySet()方法,是迭代器,是forEach呢?

下面通过实验说明:建议使用entrySet(),最好是forEach.

二、测试过程

下面是测试Map遍历的代码:


/** 
 * Licensed to the Apache Software Foundation (ASF) under one or more
 * contributor license agreements.  See the NOTICE file distributed with
 * this work for additional information regarding copyright ownership.
 * The ASF licenses this file to You under the Apache License, Version 2.0
 * (the "License"); you may not use this file except in compliance with
 * the License.  You may obtain a copy of the License at
 *
 *     http://www.apache.org/licenses/LICENSE-2.0
 *
 * Unless required by applicable law or agreed to in writing, software
 * distributed under the License is distributed on an 
评论 1
添加红包

请填写红包祝福语或标题

红包个数最小为10个

红包金额最低5元

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

抵扣说明:

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

余额充值