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

 找回密码
 加入黑马

QQ登录

只需一步,快速开始

© sjt2020 中级黑马   /  2015-11-24 19:59  /  1208 人查看  /  6 人回复  /   0 人收藏 转载请遵从CC协议 禁止商业使用本文



import java.util.Comparator;
import java.util.TreeMap;


public class Test3 {
        public static void main(String[] args) {
                TreeMap<Student,String> tm=new TreeMap<>(new Comparator<Student>(){

                        @Override
                        public int compare(Student s1, Student s2) {
                                int num=s1.getAge()-s2.getAge();
                                return num==0?s1.getName().compareTo(s2.getName()):num;
                        }
                       
                });
                tm.put(new Student("张三", 23), "北京");
                tm.put(new Student("李四",24), "上海");
                tm.put(new Student("王五",25), "北京");
               
                System.out.println(tm);
        }
}


6 个回复

倒序浏览
  小弟弟, 加油哈!
回复 使用道具 举报
很清晰哦,学习了
回复 使用道具 举报
可以哦,比我这新手强多了
回复 使用道具 举报
写的很清楚  我也学习到了 呵呵!!
回复 使用道具 举报
这是干什么的
回复 使用道具 举报
敲代码要是能加点注释思路会更清晰,效果更好哦
回复 使用道具 举报
您需要登录后才可以回帖 登录 | 加入黑马