我是靠谱客的博主 花痴砖头,最近开发中收集的这篇文章主要介绍hashMap的三种遍历方式,觉得挺不错的,现在分享给大家,希望可以做个参考。

概述


    public void testClass(){
        HashMap<String, String> hashMap = new HashMap<String, String>();
        hashMap.put("1", "1");
        hashMap.put("2", "2");
        Set<Entry<String, String>> entrySet = hashMap.entrySet();
        Iterator<Entry<String, String>> iterator = entrySet.iterator();
        //1.迭代器实现 效率高
        while(iterator.hasNext()){
            Entry<String, String> entry = iterator.next();
            String key = entry.getKey();
            System.out.println(key);
            String value = entry.getValue();
            System.out.println(value);
        }
        //2.entrySet
        for (Entry<String, String> entry : entrySet) {
            System.out.println(entry.getKey() + ":" + entry.getValue());
        }
        //3.keySet
        Set<String> keySet = hashMap.keySet();
        for (String entry : keySet) {
            System.out.println(hashMap.get(entry));
        }
    }

最后

以上就是花痴砖头为你收集整理的hashMap的三种遍历方式的全部内容,希望文章能够帮你解决hashMap的三种遍历方式所遇到的程序开发问题。

如果觉得靠谱客网站的内容还不错,欢迎将靠谱客网站推荐给程序员好友。

本图文内容来源于网友提供,作为学习参考使用,或来自网络收集整理,版权属于原作者所有。
点赞(49)

评论列表共有 0 条评论

立即
投稿
返回
顶部