java中介面Set有眾多實作類別,而HashSet和TreeSet是最常用的兩個,這裡總結TreeSet實現排序的2種方式:
1.通過TreeSet(Comparator<? super E> comparator) 構造方法指定TreeSet的比較子進行排序;
2.使用TreeSet()構造方法,並對需要添加到set集合中的元素實現Comparable介面進行排序;
1.通過TreeSet(Comparator<? super E> comparator) 構造方法指定TreeSet的比較子進行排序;
(1).構造裝入TreeSet的java bean
例如:
package src;public class Foo { private int num; public int getNum() { return num; } public void setNum(int num) { this.num = num; } public String toString() { return "foo:" + this.getNum() + ","; }}
(2).自己實現比較子
例如:
package src;import java.util.Comparator;public class MyComparator implements Comparator<Foo> { public int compare(Foo f1,Foo f2) { if (f1.getNum() > f2.getNum()) { return 1; } else if (f1.getNum() == f2.getNum()) { return 0; } else { return -1; } }}
(3)new TreeSet時指定比較子
TreeSet<Foo> set = new TreeSet(new MyComparator());
這樣在set.add()元素時就會根據自己定義比較子進行排序了
2.使用TreeSet()構造方法,並對需要添加到set集合中的元素實現Comparable介面進行排序;
這種方法不需要自己寫一個比較子,需要對裝入set集合中的元素實現Comparable介面,TreeSet集合就根據bean的自然順序進行排序
(1).構造bean,需要實現Comparable介面,並重寫compareTo()方法,compareTo方法中定義排序的方式
例如:
package src;public class Foo implements Comparable{ private int num; public int getNum() { return num; } public void setNum(int num) { this.num = num; } public String toString() { return "foo:" + this.getNum() + ","; } public int compareTo(Object obj) { if (obj instanceof Foo) { Foo foo = (Foo)obj; if (this.num > foo.getNum()) { return 1; } else if (this.num == foo.getNum()) { return 0; } else { return -1; } } return 0; }}
(2).建立TreeSet時直接使用構造TreeSet()方法
TreeSet<Foo> set = new TreeSet();
不需要指定比較子,這樣在執行set.add()方法時,set集合就自動根據bean中compareTo()方法指定的方式進行排序。
總結:2種方法任選其一都能達到目的。