Comparable과 Comparator는 모두 컬렉션의 요소를 비교하고 정렬하는 데 사용됩니다.
Comparable과 Comparator는 모두 java interface이고 Comparable은 java.lang 패키지 아래에 있으며 Comparator는 java.util
CompareTo 메서드를 다시 작성해야 하고 Comparator 인터페이스를 구현하려면 다음을 수행해야 합니다. 비교 메서드를 다시 작성합니다.
은 Comparable 인터페이스 메서드를 구현합니다.
public class Person implements Comparable<Person> { private String name; private int age; @Override public int compareTo(Person another) { int i = 0; i = name.compareTo(another.name); // 使用String的compareTo方法 if(i == 0) { // 如果名字一样,比较年龄, 返回比较年龄结果 return age - another.age; } else { return i; // 名字不一样, 返回比较名字的结果. } } }이때 컬렉션을 사용하여 정렬할 수 있습니다.
sort( personList )를 사용하여 정렬할 수 있습니다.
Comparator 인터페이스 구현:
public class Person{ private String name; private int age }rrree 이 시점에서 Collections.sort(personList,
new를 사용할 수 있습니다. PersonComparator())를 사용하여 정렬합니다.
객체 를 구현하는 한 Comparable을 사용하는 것은 비교적 간단합니다. Comparable 인터페이스는 바로 Comparable 객체가 되지만 는 소스 코드를 수정해야 하고, 그렇게 하면 코드 결합도가 높아져 코드 확장성에 심각한 영향을 미치게 됩니다. >
Comparator를 사용하면 이 소스 코드를 수정할 필요가 없고 코드가 변경되지 않는다는 장점이 있습니다. 을 강력하게 결합했지만 사용자 정의 개체를 비교해야 하는 경우 비교기와 개체를 함께 전달하여 크기를 비교할 수 있습니다. 🎜> 그러므로 코드 확장성 측면에서 보면 Comparator 인터페이스를 구현하여 컨테이너의 요소를 정렬하는 것이 좋습니다.
public class PersonComparator implements Comparator<Person> { public int compare(Person one, Person another) { int i = 0; i = one.name.compareTo(another.name); // 使用String的compareTo方法 if(i == 0) { // 如果名字一样,比较年龄,返回比较年龄结果 return one.age - another.age; } else { return i; // 名字不一样, 返回比较名字的结果. } } }여기서 HonorPerson 클래스는 Comparablec3310a069bd6a16d43d6d878a06afc39 인터페이스를 다시 구현할 수 없습니다. 즉, HonorPerson 클래스는 Person 클래스의 비교 메소드만을 사용할 수 있고, 자체적인 비교 메소드를 정의할 수는 없다.
public class HonorPerson extends Person{ private String name; private int age; private STring degree; }
public class PersonComparator implements Comparator<Person>{}
여기서 HonorPerson과 Person은 각각 고유한 비교 방법을 갖고 있어 서로 영향을 주거나 충돌하지 않습니다.
위 내용은 Java Comparator와 Comparable의 차이점에 대한 자세한 설명의 상세 내용입니다. 자세한 내용은 PHP 중국어 웹사이트의 기타 관련 기사를 참조하세요!