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

 找回密码
 加入黑马

QQ登录

只需一步,快速开始

import java.util.*;
class Student
{
        private String name;
        private int age;
        Student(String name,int age)
        {
                this.name = name;
                this.age = age;
        }
       
        public int hasCode()
        {
                return name.hashCode()+age*34;
        }
        public boolean equals(Object obj)
        {
                if(!(obj instanceof Student))
                        throw new ClassCastException("类型不匹配");
                        Student s = (Student)obj;
                return this.name.equals(s.name) && this.age==s.age;
        }
        public String getName()
        {
                return name;
        }
        public int getAge()
        {
                return age;
        }
        public String toString()
        {
                return name+":"+age;
        }
}
class StuNameComparator implements Comparator<Student>   //姓名比较器
{
        public int compare(Student s1,Student s2)
        {
                int num = s1.getName().compareTo(s2.getName());
                if(num==0)
                        return new Integer(s1.getAge()).compareTo(new Integer(s2.getAge()));
                return num;
        }
}
class StuAgeComparator implements Comparator<Student>    //年龄比较器
{
        public int compare(Student s1,Student s2)
        {
                int num = new Integer(s1.getAge()).compareTo(new Integer(s2.getAge()));
                if (num==0)
                        return s1.getName().compareTo(s2.getName());
                return num;
        }
}
class  MapTest2
{
        public static void main(String[] args)
        {       
                //Scanner sc = new Scanner(System.in);
                //sop("请选择排序方式:1.按年龄排序    2.按姓名排序");
                //Integer s = sc.nextInt();
                //问题:这里应该怎么写可以让用户自定义排序方式,请大神指教
                TreeMap<Student,String> tm = new TreeMap<Student,String>(new StuNameComparator());
                tm.put(new Student("lisi1",45),"beijing");
                tm.put(new Student("lisi2",21),"shanghai");
                tm.put(new Student("lisi3",25),"shenzhen");
                tm.put(new Student("lisi8",18),"chaoyan");
                tm.put(new Student("lisi4",33),"chengdu");
                tm.put(new Student("lisi6",11),"wuhan");

                Set<Map.Entry<Student,String>> entrySet = tm.entrySet();
                Iterator<Map.Entry<Student,String>> it = entrySet.iterator();
                while(it.hasNext())
                {
                        Map.Entry<Student,String> me = it.next();
                        Student stu = me.getKey();
                        String addr = me.getValue();
                        sop(stu+".............."+addr);
                }
        }
        public static void sop(Object obj)
        {
                System.out.println(obj);
        }
}

2 个回复

倒序浏览
和TreeSet差不多吧~Set底层就是使用Map实现的啊~~
回复 使用道具 举报
在创建set集合的时候,使用TreeSet带参数的构造器,指定你需要的比较器(Comparator)。
你需要写两个比较器,一个用年龄排序,一个用姓名排序。通过用户的输入选择不同的比较器创建Set对象就可以实现不同的排序了。
回复 使用道具 举报
您需要登录后才可以回帖 登录 | 加入黑马