定义一个Map对象,遍历并打印出各元素的key和value

    //创建HashMap 集合  泛型为 Person 类
    HashMap<Person, String> hm = new HashMap<>();
    //向集合中添加数据   key为Person对象   value为字符串
    hm.put(new Person("顾雨磊",25), "河北");
    hm.put(new Person("周红伟",23), "杭州");
    hm.put(new Person("黑马",20), "上海");
    hm.put(new Person("程序员",18), "北京");
    hm.put(new Person("IT人",1), "中国");
    /*第一种方法
    遍历并打印出各元素的key和value
    hm.keySet()获取key及学生对象*/
    System.out.println("...........第一种方法使用hm.keySet()...........");
    for (Person personkey : hm.keySet()) {
        System.out.println("姓名: "+personkey.getName()+", 年龄: "+personkey.getAge()+", 来自: "+hm.get(personkey));
    }
    System.out.println("...........第二种方法使用hm.entrySet()...........");
    /*第二种方法遍历*/
    for (Entry<Person, String> en : hm.entrySet()){
        System.out.println("姓名: "+en.getKey().getName()+", 年龄: "+en.getKey().getAge()+", Value: "+en.getValue());

    }

猜你喜欢

转载自blog.csdn.net/jinmie0193/article/details/82813383