Java笔记总结(四十九)---HashMap通过entrySet遍历(增强for和迭代器)

Java笔记总结(四十九)---HashMap通过entrySet遍历(增强for和迭代器),第1张

package MapTest;

import java.util.*;

public class HashMapTest {
    public static void main(String[] args) {
        HashMap<String,Integer> hashMap = new HashMap();
        hashMap.put("张三",12);
        hashMap.put("李四",13);
        hashMap.put("王五",14);

        Set<Map.Entry<String, Integer>> entrySet = hashMap.entrySet();

        Iterator<Map.Entry<String, Integer>> entryIterator = entrySet.iterator();
        while (entryIterator.hasNext()) {
            Object next =  entryIterator.next();
            System.out.println(next);
        }

        for (Map.Entry<String, Integer> stringIntegerEntry : entrySet) {
            System.out.println(stringIntegerEntry);


欢迎分享,转载请注明来源:内存溢出

原文地址: http://outofmemory.cn/langs/876509.html

(0)
打赏 微信扫一扫 微信扫一扫 支付宝扫一扫 支付宝扫一扫
上一篇 2022-05-13
下一篇 2022-05-13

发表评论

登录后才能评论

评论列表(0条)

保存