Java遍历Map的几种方式的效率对比

2024-11-30 16:54:24
推荐回答(1个)
回答1:

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

public static void main(String[] args)
{
HashMap hm = new HashMap();
hm.put("111", "222");

Set> entrySet = hm.entrySet();
Iterator> iter = entrySet.iterator();
while (iter.hasNext())
{
Map.Entry entry = iter.next();
System.out.println(entry.getKey() + "\t" + entry.getValue());
}
}