Comparable 和 Comparator 接口区别
用自定义类实现Comparable接口,那么这个类就具有排序功能,Comparable和具体你要进行排序的类的实例邦定。而Comparator比较灵活,它没有和任何类绑定,实现它的自定义类仅仅定义了一种排序方式或排序规则。不言而喻,这种方式比较灵活。我们的要排序的类可以分别和多个实现Comparator接口的类绑定,从而达到可以按自己的意愿实现按多种方式排序的目的。Comparable——“静态绑定排序”,Comparator——“动态绑定排序”。
一、Comparator
强行对某个对象collection进行整体排序的比较函数,可以将Comparator传递给Collections.sort或Arrays.sort。
接口方法:
1 /**
2 * @return o1小于、等于或大于o2,分别返回负整数、零或正整数。
3 */
4 int compare(Object o1, Object o2);
案例:
1import java.util.Arrays;
2import java.util.Comparator;
3
4public class SampleComparator implements Comparator {
5
6 public int compare(Object o1, Object o2) {
7 return toInt(o1) - toInt(o2);
8 }
9
10 private int toInt(Object o) {
11 String str = (String) o;
12 str = str.replaceAll("一", "1");
13 str = str.replaceAll("二", "2");
14 str = str.replaceAll("三", "3");
15 return Integer.parseInt(str);
16 }
17
18 /**
19 * 测试方法
20 */
21 public static void main(String[] args) {
22 String[] array = new String[] { "一二", "三", "二" };
23 Arrays.sort(array, new SampleComparator());
24 for (int i = 0; i < array.length; i++) {
25 System.out.println(array[i]);
26 }
27 }
28
29}
二、Comparable
强行对实现它的每个类的对象进行整体排序,实现此接口的对象列表(和数组)可以通过Collections.sort或Arrays.sort进行自动排序。
接口方法:
1 /**
2 * @return 该对象小于、等于或大于指定对象o,分别返回负整数、零或正整数。
3 */
4 int compareTo(Object o);
假设对象User,需要按年龄排序:
1public class User {
2
3 private String id;
4 private int age;
5
6 public User(String id, int age) {
7 this.id = id;
8 this.age = age;
9 }
10
11 public int getAge() {
12 return age;
13 }
14
15 public void setAge(int age) {
16 this.age = age;
17 }
18
19 public String getId() {
20 return id;
21 }
22
23 public void setId(String id) {
24 this.id = id;
25 }
26
27}
改造后的对象:
1import java.util.Arrays;
2
3public class User implements Comparable {
4
5 private String id;
6 private int age;
7
8 public User(String id, int age) {
9 this.id = id;
10 this.age = age;
11 }
12
13 public int getAge() {
14 return age;
15 }
16
17 public void setAge(int age) {
18 this.age = age;
19 }
20
21 public String getId() {
22 return id;
23 }
24
25 public void setId(String id) {
26 this.id = id;
27 }
28
29 public int compareTo(Object o) {
30 return this.age - ((User) o).getAge();
31 }
32
33 /**
34 * 测试方法
35 */
36 public static void main(String[] args) {
37 User[] users = new User[] { new User("a", 30), new User("b", 20) };
38 Arrays.sort(users);
39 for (int i = 0; i < users.length; i++) {
40 User user = users[i];
41 System.out.println(user.getId() + " " + user.getAge());
42 }
43 }
44
45}
三、Comparator和Comparable的区别
先看一下使用Comparator对User集合实现排序的方式:
1import java.util.Arrays;
2import java.util.Comparator;
3
4public class UserComparator implements Comparator {
5
6 public int compare(Object o1, Object o2) {
7 return ((User) o1).getAge() - ((User) o2).getAge();
8 }
9
10 /**
11 * 测试方法
12 */
13 public static void main(String[] args) {
14 User[] users = new User[] { new User("a", 30), new User("b", 20) };
15 Arrays.sort(users, new UserComparator());
16 for (int i = 0; i < users.length; i++) {
17 User user = users[i];
18 System.out.println(user.getId() + " " + user.getAge());
19 }
20 }
21
22}