java中Collections.sort排序詳解
阿新 • • 發佈:2017-07-07
比較器 元素 .net 字符 atp style pri com 實現接口
Comparator是個接口,可重寫compare()及equals()這兩個方法,用於比價功能;如果是null的話,就是使用元素的默認順序,如a,b,c,d,e,f,g,就是a,b,c,d,e,f,g這樣,當然數字也是這樣的。
compare(a,b)方法:根據第一個參數小於、等於或大於第二個參數分別返回負整數、零或正整數。
equals(obj)方法:僅當指定的對象也是一個 Comparator,並且強行實施與此 Comparator 相同的排序時才返回 true。
Collections.sort(list, new PriceComparator());的第二個參數返回一個int型的值,就相當於一個標誌,告訴sort方法按什麽順序來對list進行排序。
具體實現代碼方法如下:
Book實體類:
1 package com.tjcyjd.comparator; 2 3 import java.text.DecimalFormat; 4 import java.text.SimpleDateFormat; 5 import java.util.GregorianCalendar; 6 import java.util.Iterator; 7 import java.util.TreeMap; 8 9 /** 10 * 書實體類 11 * 12 * @authoryjd 13 * 14 */ 15 public class Book implements Comparable { // 定義名為Book的類,默認繼承自Object類 16 public int id;// 編號 17 public String name;// 名稱 18 public double price; // 價格 19 private String author;// 作者 20 public GregorianCalendar calendar;// 出版日期 21 22 public Book() {23 this(0, "X", 0.0, new GregorianCalendar(), ""); 24 } 25 26 public Book(int id, String name, double price, GregorianCalendar calender, 27 String author) { 28 this.id = id; 29 this.name = name; 30 this.price = price; 31 this.calendar = calender; 32 this.author = author; 33 } 34 35 // 重寫繼承自父類Object的方法,滿足Book類信息描述的要求 36 public String toString() { 37 String showStr = id + "\t" + name; // 定義顯示類信息的字符串 38 DecimalFormat formatPrice = new DecimalFormat("0.00");// 格式化價格到小數點後兩位 39 showStr += "\t" + formatPrice.format(price);// 格式化價格 40 showStr += "\t" + author; 41 SimpleDateFormat formatDate = new SimpleDateFormat("yyyy年MM月dd日"); 42 showStr += "\t" + formatDate.format(calendar.getTime()); // 格式化時間 43 return showStr; // 返回類信息字符串 44 } 45 46 public int compareTo(Object obj) {// Comparable接口中的方法 47 Book b = (Book) obj; 48 return this.id - b.id; // 按書的id比較大小,用於默認排序 49 } 50 51 public static void main(String[] args) { 52 Book b1 = new Book(10000, "紅樓夢", 150.86, new GregorianCalendar(2009, 53 01, 25), "曹雪芹、高鄂"); 54 Book b2 = new Book(10001, "三國演義", 99.68, new GregorianCalendar(2008, 7, 55 8), "羅貫中 "); 56 Book b3 = new Book(10002, "水滸傳", 100.8, new GregorianCalendar(2009, 6, 57 28), "施耐庵 "); 58 Book b4 = new Book(10003, "西遊記", 120.8, new GregorianCalendar(2011, 6, 59 8), "吳承恩"); 60 Book b5 = new Book(10004, "天龍八部", 10.4, new GregorianCalendar(2011, 9, 61 23), "搜狐"); 62 TreeMap tm = new TreeMap(); 63 tm.put(b1, new Integer(255)); 64 tm.put(b2, new Integer(122)); 65 tm.put(b3, new Integer(688)); 66 tm.put(b4, new Integer(453)); 67 tm.put(b5, new Integer(40)); 68 Iterator it = tm.keySet().iterator(); 69 Object key = null, value = null; 70 Book bb = null; 71 while (it.hasNext()) { 72 key = it.next(); 73 bb = (Book) key; 74 value = tm.get(key); 75 System.out.println(bb.toString() + "\t庫存:" + tm.get(key)); 76 } 77 } 78 }
自定義比較器和測試類:
1 package com.tjcyjd.comparator; 2 3 import java.util.ArrayList; 4 import java.util.Collections; 5 import java.util.Comparator; 6 import java.util.GregorianCalendar; 7 import java.util.Iterator; 8 import java.util.List; 9 10 public class UseComparator { 11 public static void main(String args[]) { 12 List<Book> list = new ArrayList<Book>(); // 數組序列 13 Book b1 = new Book(10000, "紅樓夢", 150.86, new GregorianCalendar(2009, 14 01, 25), "曹雪芹、高鄂"); 15 Book b2 = new Book(10001, "三國演義", 99.68, new GregorianCalendar(2008, 7, 16 8), "羅貫中 "); 17 Book b3 = new Book(10002, "水滸傳", 100.8, new GregorianCalendar(2009, 6, 18 28), "施耐庵 "); 19 Book b4 = new Book(10003, "西遊記", 120.8, new GregorianCalendar(2011, 6, 20 8), "吳承恩"); 21 Book b5 = new Book(10004, "天龍八部", 10.4, new GregorianCalendar(2011, 9, 22 23), "搜狐"); 23 list.add(b1); 24 list.add(b2); 25 list.add(b3); 26 list.add(b4); 27 list.add(b5); 28 // Collections.sort(list); //沒有默認比較器,不能排序 29 System.out.println("數組序列中的元素:"); 30 myprint(list); 31 Collections.sort(list, new PriceComparator()); // 根據價格排序 32 System.out.println("按書的價格排序:"); 33 myprint(list); 34 Collections.sort(list, new CalendarComparator()); // 根據時間排序 35 System.out.println("按書的出版時間排序:"); 36 myprint(list); 37 } 38 39 // 自定義方法:分行打印輸出list中的元素 40 public static void myprint(List<Book> list) { 41 Iterator it = list.iterator(); // 得到叠代器,用於遍歷list中的所有元素 42 while (it.hasNext()) {// 如果叠代器中有元素,則返回true 43 System.out.println("\t" + it.next());// 顯示該元素 44 } 45 } 46 47 // 自定義比較器:按書的價格排序 48 static class PriceComparator implements Comparator { 49 public int compare(Object object1, Object object2) {// 實現接口中的方法 50 Book p1 = (Book) object1; // 強制轉換 51 Book p2 = (Book) object2; 52 return new Double(p1.price).compareTo(new Double(p2.price)); 53 } 54 } 55 56 // 自定義比較器:按書出版時間來排序 57 static class CalendarComparator implements Comparator { 58 public int compare(Object object1, Object object2) {// 實現接口中的方法 59 Book p1 = (Book) object1; // 強制轉換 60 Book p2 = (Book) object2; 61 return p2.calendar.compareTo(p1.calendar); 62 } 63 } 64 }
轉自: <p>http://blog.csdn.net/tjcyjd/article/details/6804690</p>
java中Collections.sort排序詳解