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

 找回密码
 加入黑马

QQ登录

只需一步,快速开始

package cn.itcast_03;

import java.util.Map;
import java.util.Set;
import java.util.TreeMap;

public class TreeMapTest {
        public static void main(String[] args) {
                TreeMap<String, Student> tm = new TreeMap<String, Student>();
                tm.put("01", new Student("liudehua", 20));
                tm.put("02", new Student("chenyixun", 22));
                tm.put("03", new Student("zhenzidan", 23));
                tm.put("04", new Student("gujuji", 21));
                tm.put("05", new Student("chenglong", 26));
                tm.put("05", new Student("chenglong", 26));

                Set<Map.Entry<String, Student>> set = tm.entrySet();
                for (Map.Entry<String, Student> me : set) {
                        String str = me.getKey();
                        Student stu = me.getValue();
                        System.out.println(str + "----" + stu);
                }
        }
}

0 个回复

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