真实的国产乱ⅩXXX66竹夫人,五月香六月婷婷激情综合,亚洲日本VA一区二区三区,亚洲精品一区二区三区麻豆

成都創(chuàng)新互聯(lián)網(wǎng)站制作重慶分公司

Java中的Compare和Comparator的使用方法

如何使用Java中的Compare和Comparator?相信很多新手小白對(duì)Compare和Comparator的了解處于懵懂狀態(tài),通過(guò)這篇文章的總結(jié),希望你能有所收獲。如下資料是關(guān)于Compare和Comparator使用方法的代碼。

讓客戶滿意是我們工作的目標(biāo),不斷超越客戶的期望值來(lái)自于我們對(duì)這個(gè)行業(yè)的熱愛。我們立志把好的技術(shù)通過(guò)有效、簡(jiǎn)單的方式提供給客戶,將通過(guò)不懈努力成為客戶在信息化領(lǐng)域值得信任、有價(jià)值的長(zhǎng)期合作伙伴,公司提供的服務(wù)項(xiàng)目有:域名注冊(cè)、網(wǎng)頁(yè)空間、營(yíng)銷軟件、網(wǎng)站建設(shè)、長(zhǎng)泰網(wǎng)站維護(hù)、網(wǎng)站推廣。

class Apple implements Comparable{
    int id;
    double price;
public Apple(int id, double price) {
    this.id = id;
    this.price = price;
}
public int compareTo(Apple o) {
    //return Double.compare(this.getPrice(),o.getPrice());
    if (Math.abs(this.price-o.price)<0.001)
        return 0;
    else
        return (o.price-this.price)>0?1:-1;
}
@Override
public String toString() {
    return "Apple{" +
            "id=" + id +
            ", price=" + price +
            '}';
}

}```

class AESComparator implements Comparator{


    public int compare(Apple o1, Apple o2) {
        if (Math.abs(o1.price-o2.price)<0.001)
            return 0;
        else{
            return (o1.price-o2.price)>0?1:-1;
        }
    }
}

 實(shí)現(xiàn)了Comparable接口的類需要實(shí)現(xiàn)compareTo()方法,傳入一個(gè)外部參數(shù)進(jìn)行比對(duì),實(shí)現(xiàn)了Comparator接口的方法需要實(shí)現(xiàn)compare()方法,對(duì)外部傳入的兩個(gè)類進(jìn)行比較,從而讓外部方法在比較時(shí)調(diào)用。

 兩者的區(qū)別是實(shí)現(xiàn)Comparator接口代碼更加靈活,可以定義某個(gè)類的多個(gè)比較器,從而在排序時(shí)根據(jù)實(shí)際場(chǎng)景自由調(diào)用,而Comparable接口實(shí)現(xiàn)后便不能改動(dòng)。

 總結(jié):
comparator接口:真正要實(shí)現(xiàn)的只有compare()方法,需要單獨(dú)準(zhǔn)備出一個(gè)類來(lái)實(shí)現(xiàn)comparator接口,這個(gè)類將作為指定類的排序類

public int compare(Emp o1,Emp,o2){
     return o1.id - o2.id
}
這是說(shuō)如果o1的id - o2的id是正數(shù)就升序,如果負(fù)數(shù)降序。如果0就剔除

  >0  升序
<0降序
=0 重復(fù),不記錄
comparable接口

實(shí)現(xiàn)該類接口不需要重新創(chuàng)建一個(gè)排序的類,使用接口compareble接口排序,只要重寫里面的compareTo()方法

 

Collections類是一個(gè)包裝類,它包含有各種有關(guān)集合操作的靜態(tài)方法。就像一個(gè)工具類。

Collections.sort()

sort()排序方法,根據(jù)元素的自然排序?qū)χ付斜戆瓷蜻M(jìn)行排序

public static void sort(List list,Comparator<>),根據(jù)指定比較器產(chǎn)生的順序?qū)χ付斜磉M(jìn)行排序,此列表內(nèi)的所有元素都必須可使用指定的比較器相互比較

參數(shù):list——要排序的列表
         C——確定列表順序的比較器

關(guān)于Java中的Compare和Comparator的使用方法就分享到這里了,希望以上內(nèi)容可以對(duì)大家有一定的幫助,可以學(xué)到更多知識(shí)。如果喜歡這篇文章,不如把它分享出去讓更多的人看到。


名稱欄目:Java中的Compare和Comparator的使用方法
文章URL:http://weahome.cn/article/ieiohh.html

其他資訊

在線咨詢

微信咨詢

電話咨詢

028-86922220(工作日)

18980820575(7×24)

提交需求

返回頂部