最有效率的方式遍历Map

2019独角兽企业重金招聘Python工程师标准>>> hot3.png

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());
    }
}

如果你只是想遍历一下这个Map的key值,那用"Set keySet = hm.keySet();"会比较合适一些

转载于:https://my.oschina.net/u/3080158/blog/1155620

你可能感兴趣的:(最有效率的方式遍历Map)