Java 中 Comparable 和 Comparator 比较
Comparable 简介
Comparable 是排序接口。
若一个类实现了 Comparable 接口,就意味着“该类支持排序”。 即然实现 Comparable 接口的类支持排序,假设现在存在 实现 Comparable 接口的类的对象的 List 列表(或数组),则该 List 列表(或数组)可以通过 Collections.sort(或 Arrays.sort)进行排序。
此外,“实现 Comparable 接口的类的对象”可以用作“有序映射(如 TreeMap)”中的键或“有序集合(TreeSet)”中的元素,而不需要指定比较器。
Comparable 定义
Comparable 接口仅仅只包括一个函数,它的定义如下:
package java.lang; import java.util.*; public interface Comparable<T> { public int compareTo(T o); }
说明:假设我们通过 x.compareTo(y) 来 比较 x 和 y 的大小。若返回 负数,意味着 x 比 y 小;返回“零”,意味着 x 等于 y;返回 正数,意味着 x 大于 y。
Comparator 简介
Comparator 是比较器接口。
我们若需要控制某个类的次序,而该类本身不支持排序(即没有实现 Comparable 接口);那么,我们可以建立一个“该类的比较器”来进行排序。这个“比较器”只需要实现 Comparator 接口即可。
也就是说,我们可以通过“实现 Comparator 类来新建一个比较器”,然后通过该比较器对类进行排序。
Comparator 定义
Comparator 接口仅仅只包括两个个函数,它的定义如下:
package java.util; public interface Comparator<T> { int compare(T o1, T o2); boolean equals(Object obj); }
说明:
(01) 若一个类要实现 Comparator 接口:它一定要实现 compareTo(T o1, T o2) 函数,但可以不实现 equals(Object obj) 函数。
为什么可以不实现 equals(Object obj) 函数呢? 因为任何类,默认都是已经实现了 equals(Object obj)
的。 Java 中的一切类都是继承于 java.lang.Object,在 Object.java 中实现了 equals(Object obj)
函数;所以,其它所有的类也相当于都实现了该函数。
(02) int compare(T o1, T o2)
是 比较 o1 和 o2 的大小。返回 负数,意味着 o1 比 o2 小;返回 零,意味着 o1 等于 o2;返回 正数,意味着 o1 大于 o2。
Comparator 和 Comparable 比较
Comparable 是排序接口;若一个类实现了 Comparable 接口,就意味着“该类支持排序”。
而 Comparator 是比较器;我们若需要控制某个类的次序,可以建立一个“该类的比较器”来进行排序。
我们不难发现:Comparable 相当于“内部比较器”,而 Comparator 相当于“外部比较器”。
我们通过一个测试程序来对这两个接口进行说明。源码如下:
import java.util.*;
import java.lang.Comparable;
/** * @desc "Comparator"和“Comparable”的比较程序。 * (01) "Comparable" * 它是一个排序接口,只包含一个函数 compareTo()。 * 一个类实现了 Comparable 接口,就意味着“该类本身支持排序”,它可以直接通过 Arrays.sort() 或 Collections.sort() 进行排序。 * (02) "Comparator" * 它是一个比较器接口,包括两个函数:compare() 和 equals()。 * 一个类实现了 Comparator 接口,那么它就是一个“比较器”。其它的类,可以根据该比较器去排序。 * * 综上所述:Comparable 是内部比较器,而 Comparator 是外部比较器。 * 一个类本身实现了 Comparable 比较器,就意味着它本身支持排序;若它本身没实现 Comparable,也可以通过外部比较器 Comparator 进行排序。 */ public class CompareComparatorAndComparableTest{ public static void main(String[] args) { // 新建 ArrayList(动态数组) ArrayList<Person> list = new ArrayList<Person>(); // 添加对象到 ArrayList 中 list.add(new Person("ccc", 20)); list.add(new Person("AAA", 30)); list.add(new Person("bbb", 10)); list.add(new Person("ddd", 40)); // 打印 list 的原始序列 System.out.printf("Original sort, list:%s\n", list); // 对 list 进行排序 // 这里会根据“Person 实现的 Comparable<String>接口”进行排序,即会根据“name”进行排序 Collections.sort(list); System.out.printf("Name sort, list:%s\n", list); // 通过“比较器(AscAgeComparator)”,对 list 进行排序 // AscAgeComparator 的排序方式是:根据“age”的升序排序 Collections.sort(list, new AscAgeComparator()); System.out.printf("Asc(age) sort, list:%s\n", list); // 通过“比较器(DescAgeComparator)”,对 list 进行排序 // DescAgeComparator 的排序方式是:根据“age”的降序排序 Collections.sort(list, new DescAgeComparator()); System.out.printf("Desc(age) sort, list:%s\n", list); // 判断两个 person 是否相等 testEquals(); } /** * @desc 测试两个 Person 比较是否相等。 * 由于 Person 实现了 equals() 函数:若两 person 的 age、name 都相等,则认为这两个 person 相等。 * 所以,这里的 p1 和 p2 相等。 * * TODO:若去掉 Person 中的 equals() 函数,则 p1 不等于 p2 */ private static void testEquals() { Person p1 = new Person("eee", 100); Person p2 = new Person("eee", 100); if (p1.equals(p2)) { System.out.printf("%s EQUAL %s\n", p1, p2); } else { System.out.printf("%s NOT EQUAL %s\n", p1, p2); } } /** * @desc Person 类。 * Person 实现了 Comparable 接口,这意味着 Person 本身支持排序 */ private static class Person implements Comparable<Person>{ int age; String name; public Person(String name, int age) { this.name = name; this.age = age; } public String getName() { return name; } public int getAge() { return age; } public String toString() { return name + " - " +age; } /** * 比较两个 Person 是否相等:若它们的 name 和 age 都相等,则认为它们相等 */ boolean equals(Person person) { if (this.age == person.age && this.name == person.name) return true; return false; } /** * @desc 实现 “Comparable<String>” 的接口,即重写 compareTo<T t>函数。 * 这里是通过“person 的名字”进行比较的 */ @Override public int compareTo(Person person) { return name.compareTo(person.name); //return this.name - person.name; } } /** * @desc AscAgeComparator 比较器 * 它是“Person 的 age 的升序比较器” */ private static class AscAgeComparator implements Comparator<Person> { @Override public int compare(Person p1, Person p2) { return p1.getAge() - p2.getAge(); } } /** * @desc DescAgeComparator 比较器 * 它是“Person 的 age 的升序比较器” */ private static class DescAgeComparator implements Comparator<Person> { @Override public int compare(Person p1, Person p2) { return p2.getAge() - p1.getAge(); } } }
下面对这个程序进行说明。
a) Person 类定义。如下:
private static class Person implements Comparable<Person>{ int age; String name; ... /** * @desc 实现 “Comparable<String>” 的接口,即重写 compareTo<T t>函数。 * 这里是通过“person 的名字”进行比较的 */ @Override public int compareTo(Person person) { return name.compareTo(person.name); //return this.name - person.name; } }
说明:
(01) Person 类代表一个人,Persong 类中有两个属性:age(年纪) 和 name“人名”。
(02) Person 类实现了 Comparable 接口,因此它能被排序。
b) 在 main() 中,我们创建了 Person 的 List 数组(list)。如下:
// 新建 ArrayList(动态数组) ArrayList<Person> list = new ArrayList<Person>(); // 添加对象到 ArrayList 中 list.add(new Person("ccc", 20)); list.add(new Person("AAA", 30)); list.add(new Person("bbb", 10)); list.add(new Person("ddd", 40));
c) 接着,我们打印出 list 的全部元素。如下:
// 打印 list 的原始序列 System.out.printf("Original sort, list:%s\n", list);
d) 然后,我们通过 Collections 的 sort() 函数,对 list 进行排序。
由于 Person 实现了 Comparable 接口,因此通过 sort() 排序时,会根据 Person 支持的排序方式,即 compareTo(Person person) 所定义的规则进行排序。如下:
// 对 list 进行排序 // 这里会根据“Person 实现的 Comparable<String>接口”进行排序,即会根据“name”进行排序 Collections.sort(list); System.out.printf("Name sort, list:%s\n", list);
e) 对比 Comparable 和 Comparator
我们定义了两个比较器 AscAgeComparator 和 DescAgeComparator,来分别对 Person 进行 升序 和 降低 排序。
e.1) AscAgeComparator 比较器
它是将 Person 按照 age 进行升序排序。代码如下:
/** * @desc AscAgeComparator 比较器 * 它是“Person 的 age 的升序比较器” */ private static class AscAgeComparator implements Comparator<Person> { @Override public int compare(Person p1, Person p2) { return p1.getAge() - p2.getAge(); } }
e.2) DescAgeComparator 比较器
它是将 Person 按照 age 进行降序排序。代码如下:
/** * @desc DescAgeComparator 比较器 * 它是“Person 的 age 的升序比较器” */ private static class DescAgeComparator implements Comparator<Person> { @Override public int compare(Person p1, Person p2) { return p2.getAge() - p1.getAge(); } }
f) 运行结果
运行程序,输出如下:
Original sort, list:[ccc - 20, AAA - 30, bbb - 10, ddd - 40] Name sort, list:[AAA - 30, bbb - 10, ccc - 20, ddd - 40] Asc(age) sort, list:[bbb - 10, ccc - 20, AAA - 30, ddd - 40] Desc(age) sort, list:[ddd - 40, AAA - 30, ccc - 20, bbb - 10] eee - 100 EQUAL eee - 100
Difference between Comparator and Comparable in Java
以下根据 https://www.javacodegeeks.com/2013/03/difference-between-comparator-and-comparable-in-java.html 翻译而来
Comparable 接口:如果一个对象需要实现排序那么它将实现该接口,此外,我们还需要实现 compareTo(Object) 这个方法。
public class Country implements Comparable{ @Override public int compareTo(Object arg0) { Country country=(Country) arg0; return (this.countryId < country.countryId ) ? -1: (this.countryId > country.countryId ) ? 1:0 ; } }
若任何实现了 comparable 接口的类集合对象将可以使用 Collection.sort() 或者 Arrays.sort() 方法根据 compareTo 方法对其进行排序。
在 java 中,实现了 Comparable 接口的对象可以在 SortedMap,像 TreeMap 或者 SortedSet 或者 TreeSet 作为关键字而不用实现任何接口。
Comparator 接口:实现可排序的类的对象不需要实现该接口,其他一个类可以实现该接口,例如下面的 CountrySortByIdComparator 实现了 Comparator 接口来完成对集合对象 Country 根据 id 进行排序:
public class CountrySortByIdComparator implements Comparator<Country>{ @Override public int compare(Country country1, Country country2) { return (country1.getCountryId() < country2.getCountryId() ) ? -1: (country1.getCountryId() > country2.getCountryId() ) ? 1:0 ; }
使用 Comparator 接口,我们可以根据不同的属性来写不同的排序规则,你可以使用匿名的 comparator 来对代码进行对比:
Country indiaCountry=new Country(1, 'India'); Country chinaCountry=new Country(4, 'China'); Country nepalCountry=new Country(3, 'Nepal'); Country bhutanCountry=new Country(2, 'Bhutan'); List<Country> listOfCountries = new ArrayList<Country>(); listOfCountries.add(indiaCountry); listOfCountries.add(chinaCountry); listOfCountries.add(nepalCountry); listOfCountries.add(bhutanCountry); //Sort by countryName Collections.sort(listOfCountries,new Comparator<Country>() { @Override public int compare(Country o1, Country o2) { return o1.getCountryName().compareTo(o2.getCountryName()); } });
Comparator vs Comparable
java 代码:对于 Comparable 我们创建了包含 id 和 name 属性的 country 类,它实现了 Comparable 接口并实现了 CompareTo 方法并根据 id 对该集合进行排序。
package org.arpit.javapostsforlearning; //If this.cuntryId < country.countryId:then compare method will return -1 //If this.countryId > country.countryId:then compare method will return 1 //If this.countryId==country.countryId:then compare method will return 0 public class Country implements Comparable{ int countryId; String countryName; public Country(int countryId, String countryName) { super(); this.countryId = countryId; this.countryName = countryName; } @Override public int compareTo(Object arg0) { Country country=(Country) arg0; return (this.countryId < country.countryId ) ? -1: (this.countryId > country.countryId ) ? 1:0 ; } public int getCountryId() { return countryId; } public void setCountryId(int countryId) { this.countryId = countryId; } public String getCountryName() { return countryName; } public void setCountryName(String countryName) { this.countryName = countryName; } }
2.ComparatorMain.java
package org.arpit.javapostsforlearning; import java.util.ArrayList; import java.util.Collections; import java.util.List; public class ComparatorMain { /** * @author Arpit Mandliya */ public static void main(String[] args) { Country indiaCountry=new Country(1, 'India'); Country chinaCountry=new Country(4, 'China'); Country nepalCountry=new Country(3, 'Nepal'); Country bhutanCountry=new Country(2, 'Bhutan'); List<Country> listOfCountries = new ArrayList<Country>(); listOfCountries.add(indiaCountry); listOfCountries.add(chinaCountry); listOfCountries.add(nepalCountry); listOfCountries.add(bhutanCountry); System.out.println('Before Sort : '); for (int i = 0; i < listOfCountries.size(); i++) { Country country=(Country) listOfCountries.get(i); System.out.println('Country Id: '+country.getCountryId()+'||'+'Country name: '+country.getCountryName()); } Collections.sort(listOfCountries); System.out.println('After Sort : '); for (int i = 0; i < listOfCountries.size(); i++) { Country country=(Country) listOfCountries.get(i); System.out.println('Country Id: '+country.getCountryId()+'|| '+'Country name: '+country.getCountryName()); } } }
Output:
Before Sort : Country Id: 1||Country name: India Country Id: 4||Country name: China Country Id: 3||Country name: Nepal Country Id: 2||Country name: Bhutan After Sort : Country Id: 1|| Country name: India Country Id: 2|| Country name: Bhutan Country Id: 3|| Country name: Nepal Country Id: 4|| Country name: China
Comparator:我们创建了有 id 和 name 属性的 Country 类,并且,我们将创建另一个实现了 Comparator 接口和 compare 方法来根据 country 对象的 id 进行排序的 CountrySortByIdComparator 类,我们也将回看见如何使用匿名的 compator 来进行排序。
1.Country.java
package org.arpit.javapostsforlearning; public class Country{ int countryId; String countryName; public Country(int countryId, String countryName) { super(); this.countryId = countryId; this.countryName = countryName; } public int getCountryId() { return countryId; } public void setCountryId(int countryId) { this.countryId = countryId; } public String getCountryName() { return countryName; } public void setCountryName(String countryName) { this.countryName = countryName; } }
2.CountrySortbyIdComparator.java
package org.arpit.javapostsforlearning; import java.util.Comparator; //If country1.getCountryId()<country2.getCountryId():then compare method will return -1 //If country1.getCountryId()>country2.getCountryId():then compare method will return 1 //If country1.getCountryId()==country2.getCountryId():then compare method will return 0 public class CountrySortByIdComparator implements Comparator<Country>{ @Override public int compare(Country country1, Country country2) { return (country1.getCountryId() < country2.getCountryId() ) ? -1: (country1.getCountryId() > country2.getCountryId() ) ? 1:0 ; } }
3.ComparatorMain.java
package org.arpit.javapostsforlearning; import java.util.ArrayList; import java.util.Collections; import java.util.Comparator; import java.util.List; public class ComparatorMain { /** * @author Arpit Mandliya */ public static void main(String[] args) { Country indiaCountry=new Country(1, 'India'); Country chinaCountry=new Country(4, 'China'); Country nepalCountry=new Country(3, 'Nepal'); Country bhutanCountry=new Country(2, 'Bhutan'); List<Country> listOfCountries = new ArrayList<Country>(); listOfCountries.add(indiaCountry); listOfCountries.add(chinaCountry); listOfCountries.add(nepalCountry); listOfCountries.add(bhutanCountry); System.out.println('Before Sort by id : '); for (int i = 0; i < listOfCountries.size(); i++) { Country country=(Country) listOfCountries.get(i); System.out.println('Country Id: '+country.getCountryId()+'||'+'Country name: '+country.getCountryName()); } Collections.sort(listOfCountries,new CountrySortByIdComparator()); System.out.println('After Sort by id: '); for (int i = 0; i < listOfCountries.size(); i++) { Country country=(Country) listOfCountries.get(i); System.out.println('Country Id: '+country.getCountryId()+'|| '+'Country name: '+country.getCountryName()); } //Sort by countryName Collections.sort(listOfCountries,new Comparator<Country>() { @Override public int compare(Country o1, Country o2) { return o1.getCountryName().compareTo(o2.getCountryName()); } }); System.out.println('After Sort by name: '); for (int i = 0; i < listOfCountries.size(); i++) { Country country=(Country) listOfCountries.get(i); System.out.println('Country Id: '+country.getCountryId()+'|| '+'Country name: '+country.getCountryName()); } } }
Output:
Before Sort by id : Country Id: 1||Country name: India Country Id: 4||Country name: China Country Id: 3||Country name: Nepal Country Id: 2||Country name: Bhutan After Sort by id: Country Id: 1|| Country name: India Country Id: 2|| Country name: Bhutan Country Id: 3|| Country name: Nepal Country Id: 4|| Country name: China After Sort by name: Country Id: 2|| Country name: Bhutan Country Id: 4|| Country name: China Country Id: 1|| Country name: India Country Id: 3|| Country name: Nepal
如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。
上一篇: HTML 转出到 Word 中
下一篇: 彻底找到 Tomcat 启动速度慢的元凶
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论