美文网首页
遍历HashMap的最佳方法

遍历HashMap的最佳方法

作者: 倔强的炉包 | 来源:发表于2017-07-10 21:21 被阅读12次
    public static void printMap(Map mp) {
        Iterator it = mp.entrySet().iterator();
        while (it.hasNext()) {
            Map.Entry pair = (Map.Entry)it.next();
            System.out.println(pair.getKey() + " = " + pair.getValue());
            it.remove(); // avoids a ConcurrentModificationException
        }
    }
    

    相关文章

      网友评论

          本文标题:遍历HashMap的最佳方法

          本文链接:https://www.haomeiwen.com/subject/egbuhxtx.html