本问题已经有最佳答案,请猛点这里访问。
我有个班上的学生实现了一个静态方法
public static Comparator getCompByName()
返回用于比较两个学生对象的学生的新Comparator对象通过属性"name"。
现在,我需要使用函数getCompabyName()按"name"对学生数组列表进行排序,以此来测试这一点。
这是我在学生班的比较器方法。
public static Comparator getCompByName()
{
Comparator comp = new Comparator(){
@Override
public int compare(Student s1, Student s2)
{
return s1.name.compareTo(s2.name);
}
};
return comp;
}
在我需要测试的地方
public static void main(String[] args)
{
// TODO code application logic here
//--------Student Class Test-------------------------------------------
ArrayList students = new ArrayList();
Student s1 = new Student("Mike");
Student s2 = new Student("Hector");
Student s3 = new Student("Reggie");
Student s4 = new Student("zark");
students.add(s1);
students.add(s2);
students.add(s3);
students.add(S4);
//Use getCompByName() from Student class to sort students
有人能告诉我如何使用我的主目录中的getCompabyName()来按名称对数组列表进行实际排序吗?我对比较器不熟悉,对它们的用法也很难理解。这个方法返回一个比较器,所以我不确定如何实现它。我知道我需要使用getCompabyName()进行排序,我只是不确定如何实现它。
首先,选择你最喜欢的排序算法。
@Sotiriosdelimanolis我需要使用getcompbyname()来排序,而不是另一种算法
Collections.sort(students, getCompByName())
我想你误解了江户一〔1〕的做法。它本身只是比较两个元素。您必须实际编写(或使用JDK中的)排序算法,。
@用户3345200您可能想看看关于对象排序的官方教程。它简洁、写得很好,并且很好地解释了如何实现和使用Comparator对对象进行排序。
使用collections.sort(list,comparator)方法:
Collections.sort(students, Student.getCompByName());
另外,在代码中,在声明List时,最好使用List接口:
List students = new ArrayList();
您还可以使用Student[]并将其传递给ArrayList构造函数来加强代码:
public static void main(String[] args) {
Student[] studentArr = new Student[]{new Student("Mike"),new Student("Hector"), new Student("Reggie"),new Student("zark")};
List students = new ArrayList(Arrays.asList(studentArr));
Collections.sort(students, Student.getCompByName());
for(Student student:students){
System.out.println(student.getName());
}
}
以下是完整来源的要点。
那是什么意思?
@Cosdicudatu Thanks,updated.
使用Collections.sort():
Collections.sort(students, getCompByName());
注意:可能有助于使比较器成为private static final变量。
注2:就地修改列表;不创建新列表。