欧美一区二区三区老妇人-欧美做爰猛烈大尺度电-99久久夜色精品国产亚洲a-亚洲福利视频一区二区

詳解Java中Collections.sort排序

Comparator是個(gè)接口,可重寫(xiě)compare()及equals()這兩個(gè)方法,用于比價(jià)功能;如果是null的話,就是使用元素的默認(rèn)順序,如a,b,c,d,e,f,g,就是a,b,c,d,e,f,g這樣,當(dāng)然數(shù)字也是這樣的。

成都網(wǎng)站建設(shè)哪家好,找創(chuàng)新互聯(lián)公司!專注于網(wǎng)頁(yè)設(shè)計(jì)、成都網(wǎng)站建設(shè)、微信開(kāi)發(fā)、微信小程序、集團(tuán)企業(yè)網(wǎng)站設(shè)計(jì)等服務(wù)項(xiàng)目。核心團(tuán)隊(duì)均擁有互聯(lián)網(wǎng)行業(yè)多年經(jīng)驗(yàn),服務(wù)眾多知名企業(yè)客戶;涵蓋的客戶類型包括:木托盤(pán)等眾多領(lǐng)域,積累了大量豐富的經(jīng)驗(yàn),同時(shí)也獲得了客戶的一致表?yè)P(yáng)!

compare(a,b)方法:根據(jù)第一個(gè)參數(shù)小于、等于或大于第二個(gè)參數(shù)分別返回負(fù)整數(shù)、零或正整數(shù)。

equals(obj)方法:僅當(dāng)指定的對(duì)象也是一個(gè) Comparator,并且強(qiáng)行實(shí)施與此 Comparator 相同的排序時(shí)才返回 true。

Collections.sort(list, new PriceComparator());的第二個(gè)參數(shù)返回一個(gè)int型的值,就相當(dāng)于一個(gè)標(biāo)志,告訴sort方法按什么順序來(lái)對(duì)list進(jìn)行排序。

具體實(shí)現(xiàn)代碼方法如下:

Book實(shí)體類:

package com.tjcyjd.comparator; 
import java.text.DecimalFormat; 
import java.text.SimpleDateFormat; 
import java.util.GregorianCalendar; 
import java.util.Iterator; 
import java.util.TreeMap; 
/** 
 * 書(shū)實(shí)體類 
 * 
 * @author yjd 
 * 
 */ 
public class Book implements Comparable { // 定義名為Book的類,默認(rèn)繼承自O(shè)bject類 
  public int id;// 編號(hào) 
  public String name;// 名稱 
  public double price; // 價(jià)格 
  private String author;// 作者 
  public GregorianCalendar calendar;// 出版日期 
  public Book() { 
    this(0, "X", 0.0, new GregorianCalendar(), ""); 
  } 
  public Book(int id, String name, double price, GregorianCalendar calender, 
      String author) { 
    this.id = id; 
    this.name = name; 
    this.price = price; 
    this.calendar = calender; 
    this.author = author; 
  } 
  // 重寫(xiě)繼承自父類Object的方法,滿足Book類信息描述的要求 
  public String toString() { 
    String showStr = id + "\t" + name; // 定義顯示類信息的字符串 
    DecimalFormat formatPrice = new DecimalFormat("0.00");// 格式化價(jià)格到小數(shù)點(diǎn)后兩位 
    showStr += "\t" + formatPrice.format(price);// 格式化價(jià)格 
    showStr += "\t" + author; 
    SimpleDateFormat formatDate = new SimpleDateFormat("yyyy年MM月dd日"); 
    showStr += "\t" + formatDate.format(calendar.getTime()); // 格式化時(shí)間 
    return showStr; // 返回類信息字符串 
  } 
  public int compareTo(Object obj) {// Comparable接口中的方法 
    Book b = (Book) obj; 
    return this.id - b.id; // 按書(shū)的id比較大小,用于默認(rèn)排序 
  } 
  public static void main(String[] args) { 
    Book b1 = new Book(10000, "紅樓夢(mèng)", 150.86, new GregorianCalendar(2009, 
        01, 25), "曹雪芹、高鄂"); 
    Book b2 = new Book(10001, "三國(guó)演義", 99.68, new GregorianCalendar(2008, 7, 
        8), "羅貫中 "); 
    Book b3 = new Book(10002, "水滸傳", 100.8, new GregorianCalendar(2009, 6, 
        28), "施耐庵 "); 
    Book b4 = new Book(10003, "西游記", 120.8, new GregorianCalendar(2011, 6, 
        8), "吳承恩"); 
    Book b5 = new Book(10004, "天龍八部", 10.4, new GregorianCalendar(2011, 9, 
        23), "搜狐"); 
    TreeMap tm = new TreeMap(); 
    tm.put(b1, new Integer(255)); 
    tm.put(b2, new Integer(122)); 
    tm.put(b3, new Integer(688)); 
    tm.put(b4, new Integer(453)); 
    tm.put(b5, new Integer(40)); 
    Iterator it = tm.keySet().iterator(); 
    Object key = null, value = null; 
    Book bb = null; 
    while (it.hasNext()) { 
      key = it.next(); 
      bb = (Book) key; 
      value = tm.get(key); 
      System.out.println(bb.toString() + "\t庫(kù)存:" + tm.get(key)); 
    } 
  } 
} 

自定義比較器和測(cè)試類:

package com.tjcyjd.comparator; 
import java.util.ArrayList; 
import java.util.Collections; 
import java.util.Comparator; 
import java.util.GregorianCalendar; 
import java.util.Iterator; 
import java.util.List; 
public class UseComparator { 
  public static void main(String args[]) { 
    List<Book> list = new ArrayList<Book>(); // 數(shù)組序列 
    Book b1 = new Book(10000, "紅樓夢(mèng)", 150.86, new GregorianCalendar(2009, 
        01, 25), "曹雪芹、高鄂"); 
    Book b2 = new Book(10001, "三國(guó)演義", 99.68, new GregorianCalendar(2008, 7, 
        8), "羅貫中 "); 
    Book b3 = new Book(10002, "水滸傳", 100.8, new GregorianCalendar(2009, 6, 
        28), "施耐庵 "); 
    Book b4 = new Book(10003, "西游記", 120.8, new GregorianCalendar(2011, 6, 
        8), "吳承恩"); 
    Book b5 = new Book(10004, "天龍八部", 10.4, new GregorianCalendar(2011, 9, 
        23), "搜狐"); 
    list.add(b1); 
    list.add(b2); 
    list.add(b3); 
    list.add(b4); 
    list.add(b5); 
    // Collections.sort(list); //沒(méi)有默認(rèn)比較器,不能排序 
    System.out.println("數(shù)組序列中的元素:"); 
    myprint(list); 
    Collections.sort(list, new PriceComparator()); // 根據(jù)價(jià)格排序 
    System.out.println("按書(shū)的價(jià)格排序:"); 
    myprint(list); 
    Collections.sort(list, new CalendarComparator()); // 根據(jù)時(shí)間排序 
    System.out.println("按書(shū)的出版時(shí)間排序:"); 
    myprint(list); 
  } 
  // 自定義方法:分行打印輸出list中的元素 
  public static void myprint(List<Book> list) { 
    Iterator it = list.iterator(); // 得到迭代器,用于遍歷list中的所有元素 
    while (it.hasNext()) {// 如果迭代器中有元素,則返回true 
      System.out.println("\t" + it.next());// 顯示該元素 
    } 
  } 
  // 自定義比較器:按書(shū)的價(jià)格排序 
  static class PriceComparator implements Comparator { 
    public int compare(Object object1, Object object2) {// 實(shí)現(xiàn)接口中的方法 
      Book p1 = (Book) object1; // 強(qiáng)制轉(zhuǎn)換 
      Book p2 = (Book) object2; 
      return new Double(p1.price).compareTo(new Double(p2.price)); 
    } 
  } 
  // 自定義比較器:按書(shū)出版時(shí)間來(lái)排序 
  static class CalendarComparator implements Comparator { 
    public int compare(Object object1, Object object2) {// 實(shí)現(xiàn)接口中的方法 
      Book p1 = (Book) object1; // 強(qiáng)制轉(zhuǎn)換 
      Book p2 = (Book) object2; 
      return p2.calendar.compareTo(p1.calendar); 
    } 
  } 
} 

以上所述是小編給大家介紹的詳解Java中Collections.sort排序,希望對(duì)大家有所幫助,如果大家有任何疑問(wèn)請(qǐng)給我留言,小編會(huì)及時(shí)回復(fù)大家的。在此也非常感謝大家對(duì)創(chuàng)新互聯(lián)網(wǎng)站的支持!

新聞名稱:詳解Java中Collections.sort排序
分享鏈接:http://chinadenli.net/article14/ppdjge.html

成都網(wǎng)站建設(shè)公司_創(chuàng)新互聯(lián),為您提供網(wǎng)站設(shè)計(jì)公司響應(yīng)式網(wǎng)站企業(yè)建站自適應(yīng)網(wǎng)站Google外貿(mào)網(wǎng)站建設(shè)

廣告

聲明:本網(wǎng)站發(fā)布的內(nèi)容(圖片、視頻和文字)以用戶投稿、用戶轉(zhuǎn)載內(nèi)容為主,如果涉及侵權(quán)請(qǐng)盡快告知,我們將會(huì)在第一時(shí)間刪除。文章觀點(diǎn)不代表本網(wǎng)站立場(chǎng),如需處理請(qǐng)聯(lián)系客服。電話:028-86922220;郵箱:631063699@qq.com。內(nèi)容未經(jīng)允許不得轉(zhuǎn)載,或轉(zhuǎn)載時(shí)需注明來(lái)源: 創(chuàng)新互聯(lián)

小程序開(kāi)發(fā)