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

 找回密码
 加入黑马

QQ登录

只需一步,快速开始

© gss 中级黑马   /  2015-9-30 21:19  /  250 人查看  /  0 人回复  /   0 人收藏 转载请遵从CC协议 禁止商业使用本文

package map;

import java.util.HashMap;
import java.util.Map;

import bean.Student;

public class Test6 {
        public static void main(String[] args) {
                HashMap<Student, String> hm = new HashMap<Student, String>();
                hm.put(new Student("张三", 23), "北京");
                hm.put(new Student("李四", 24), "上海");
                hm.put(new Student("王五", 25), "韩国");
                hm.put(new Student("周六", 26), "法国");
                HashMap<Student, String> hm1 = new HashMap<Student, String>();
                hm1.put(new Student("高芹", 22), "山东");
                hm1.put(new Student("高博", 24), "上海");
                hm1.put(new Student("高飞", 22), "日本");
                hm1.put(new Student("豆豆", 20), "意大利");
                HashMap<HashMap<Student, String>, String> list = new HashMap<>();
                list.put(hm, "第一期");
                list.put(hm1, "第二期");
                // System.out.println(list);
                for (HashMap<Student, String> s : list.keySet()) {
                        String value = list.get(s);
                        for (Student ss : s.keySet()) {
                                String value2 = s.get(ss);
                                System.out.println(ss + "=" + value2 + "=" + value);

                        }

                }
        }

}

0 个回复

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