A股上市公司传智教育(股票代码 003032)旗下技术交流社区北京昌平校区

 找回密码
 加入黑马

QQ登录

只需一步,快速开始

package com.heima;

import java.util.HashMap;
import java.util.Iterator;
import java.util.Map;
import java.util.Set;

public class test6 {

        public static void main(String[] args) {
                HashMap<String, Integer> map = new HashMap<>();
                map.put("习~~",60);
                map.put("李~~",59);
                map.put("胡~~",66);
                map.put("温~~",70);
                map.put("周~~",73);
               
                Set<Map.Entry<String,Integer>> EntrySet = map.entrySet();
                Iterator<Map.Entry<String,Integer>> it = EntrySet.iterator();
                while (it.hasNext()) {
                        Map.Entry<String,Integer> en = it.next();
                        String key = en.getKey();
                        Integer value = en.getValue();
                        System.out.println(key + "=" + value);
                }
        }
}

0 个回复

您需要登录后才可以回帖 登录 | 加入黑马