66

可能重复:
使用多个键对 Java 对象进行排序

我找不到任何使用此方法的示例,所有示例都给出了第二个参数“null”。我听说这种方法用于根据多个标准对类进行排序,但没有找到示例。

public class Student implements Comparable<Student> {
String name;
int age;

public Student(String name, int age) {
    this.name = name;
    this.age = age;
}

@Override
public String toString() {
    return name + ":" + age;
}

@Override
public int compareTo(Student o) {
    Integer myAge = age;
    Integer oAge = o.age;
    return myAge.compareTo(oAge);
}

}

对于此类,如果我想根据学生的姓名和年龄对学生列表进行排序,我该如何使用方法 Collections sort(List,Comparator)

4

4 回答 4

122

在您现有的Student课程的基础上,这就是我通常的做法,尤其是在我需要多个比较器的情况下。

public class Student implements Comparable<Student> {

    String name;
    int age;

    public Student(String name, int age) {
       this.name = name;
       this.age = age;
    }

    @Override
    public String toString() {
        return name + ":" + age;
    }

    @Override
    public int compareTo(Student o) {
        return Comparators.NAME.compare(this, o);
    }


    public static class Comparators {

        public static Comparator<Student> NAME = new Comparator<Student>() {
            @Override
            public int compare(Student o1, Student o2) {
                return o1.name.compareTo(o2.name);
            }
        };
        public static Comparator<Student> AGE = new Comparator<Student>() {
            @Override
            public int compare(Student o1, Student o2) {
                return o1.age - o2.age;
            }
        };
        public static Comparator<Student> NAMEANDAGE = new Comparator<Student>() {
            @Override
            public int compare(Student o1, Student o2) {
                int i = o1.name.compareTo(o2.name);
                if (i == 0) {
                    i = o1.age - o2.age;
                }
                return i;
            }
        };
    }
}

用法:

List<Student> studentList = new LinkedList<>();
Collections.sort(studentList, Student.Comparators.AGE);

编辑

自 Java 8 发布以来,内部类Comparators可以使用 lambdas 大大简化。ComparatorJava 8 还为object引入了一种新方法,thenComparing在嵌套它们时无需手动检查每个比较器。Student.Comparators下面是考虑了这些更改的类的 Java 8 实现。

public static class Comparators {
    public static final Comparator<Student> NAME = (Student o1, Student o2) -> o1.name.compareTo(o2.name);
    public static final Comparator<Student> AGE = (Student o1, Student o2) -> Integer.compare(o1.age, o2.age);
    public static final Comparator<Student> NAMEANDAGE = (Student o1, Student o2) -> NAME.thenComparing(AGE).compare(o1, o2);
}
于 2013-01-04T09:36:15.033 回答
66

这可能是最简单的方法 -

Collections.sort(listOfStudent,new Comparator<Student>(){
                     public int compare(Student s1,Student s2){
                           // Write your logic here.
                     }});

使用 Java 8(lambda 表达式) -

listOfStudent.sort((s1, s2) -> s1.age - s2.age); 
于 2013-01-04T09:15:16.827 回答
14

你可能想要这样的东西:

Collections.sort(students, new Comparator<Student>() {
                     public int compare(Student s1, Student s2) {
                           if(s1.getName() != null && s2.getName() != null && s1.getName().comareTo(s1.getName()) != 0) {
                               return s1.getName().compareTo(s2.getName());
                           } else {
                             return s1.getAge().compareTo(s2.getAge());
                          }
                      }
);

这首先按学生的姓名对学生进行排序。如果缺少一个名字,或者两个学生有相同的名字,他们将按年龄排序。

于 2013-01-04T09:21:33.110 回答
3

要使用 Collections sort(List,Comparator) ,您需要创建一个实现 Comparator 接口的类,并通过Comparator 接口在其中创建 compare() 的代码

你可以这样做:

class StudentComparator implements Comparator
{
    public int compare (Student s1 Student s2)
    {
        // code to compare 2 students
    }
}

要进行排序,请执行以下操作:

 Collections.sort(List,new StudentComparator())
于 2013-01-04T09:15:31.283 回答