如何正确使用Java比较器?

前端之家收集整理的这篇文章主要介绍了如何正确使用Java比较器?前端之家小编觉得挺不错的,现在分享给大家,也给大家做个参考。
如果我有以下课程:
public class Employee {
    private int empId;
    private String name;
    private int age;

    public Employee(int empId,String name,int age) {
        // set values on attributes
    }
    // getters & setters
}

如何使用按名称比较的比较器,然后是年龄,然后是id?

解决方法

您需要实现它,以便按首选元素进行排序.也就是说,您需要按名称进行比较,然后如果该比较相等,则按年龄等进行比较.下面列出了一个示例:
public class EmployeeComparator implements Comparator<Employee> {

  @Override
  public int compare(Employee e1,Employee e2) {
    int nameDiff = e1.getName().compareTo(e2.getName());

    if(nameDiff != 0) {
      return nameDiff;
    }

    int ageDiff = e1.getAge() - e2.getAge();

    if(ageDiff != 0) {
      return ageDiff;
    }

    int idDiff = e1.getEmpId() - e2.getEmpId();

    return idDiff;
  }
}
原文链接:https://www.f2er.com/java/126943.html

猜你在找的Java相关文章