日韩性视频-久久久蜜桃-www中文字幕-在线中文字幕av-亚洲欧美一区二区三区四区-撸久久-香蕉视频一区-久久无码精品丰满人妻-国产高潮av-激情福利社-日韩av网址大全-国产精品久久999-日本五十路在线-性欧美在线-久久99精品波多结衣一区-男女午夜免费视频-黑人极品ⅴideos精品欧美棵-人人妻人人澡人人爽精品欧美一区-日韩一区在线看-欧美a级在线免费观看

歡迎訪問 生活随笔!

生活随笔

當前位置: 首頁 > 编程资源 > 编程问答 >内容正文

编程问答

Collections.sort()自定义排序方式

發(fā)布時間:2025/3/21 编程问答 15 豆豆
生活随笔 收集整理的這篇文章主要介紹了 Collections.sort()自定义排序方式 小編覺得挺不錯的,現(xiàn)在分享給大家,幫大家做個參考.

Java中Collections.sort()的使用!


在日常開發(fā)中,很多時候都需要對一些數(shù)據(jù)進行排序的操作。然而那些數(shù)據(jù)一般都是放在一個集合中如:Map ,Set ,List 等集合中。他們都提共了一個排序方法 sort(),要對數(shù)據(jù)排序直接使用這個方法就行,但是要保證集合中的對象是 可比較的。

怎么讓一個對象是 可比較的,那就需要該對象實現(xiàn) Comparable<T> 接口啦。然后重寫里面的?
compareTo()方法。我們可以看到Java中很多類都是實現(xiàn)類這個接口的 如:Integer,Long 等等。。。

假設(shè)我們有一個學生類,默認需要按學生的年齡字段 age 進行排序 代碼如下:

public class Student implements Comparable<Student> {
? ? private int id;
? ? private int age;
? ? private String name;

? ? public Student(int id, int age, String name) {
? ? ? ? this.id = id;
? ? ? ? this.age = age;
? ? ? ? this.name = name;
? ? }
? ? @Override
? ? public int compareTo(Student o) {
? ? ? ? //降序
? ? ? ? //return o.age - this.age;
? ? ? ? //升序
? ? ? ? return this.age - o.age; ? ? ? ?
? ? }
? ? @Override
? ? public String toString() {
? ? ? ? return "Student{" +
? ? ? ? ? ? ? ? "id=" + id +
? ? ? ? ? ? ? ? ", age=" + age +
? ? ? ? ? ? ? ? ", name='" + name + '\'' +
? ? ? ? ? ? ? ? '}';
? ? }
}

這里說一下重寫的 public int compareTo(Student o){} 這個方法,它返回三種 int 類型的值: 負整數(shù),零 ,正整數(shù)。

返回值?? ?含義
負整數(shù)?? ?當前對象的值 < 比較對象的值 , 位置排在前
零?? ?當前對象的值 = 比較對象的值 , 位置不變
正整數(shù)?? ?當前對象的值 > 比較對象的值 , 位置排在后
測試代碼:
public static void main(String args[]){
? ? ? ? List<Student> list = new ArrayList<>();
? ? ? ? list.add(new Student(1,25,"關(guān)羽"));
? ? ? ? list.add(new Student(2,21,"張飛"));
? ? ? ? list.add(new Student(3,18,"劉備"));
? ? ? ? list.add(new Student(4,32,"袁紹"));
? ? ? ? list.add(new Student(5,36,"趙云"));
? ? ? ? list.add(new Student(6,16,"曹操"));
? ? ? ? System.out.println("排序前:");
? ? ? ? for (Student student : list) {
? ? ? ? ? ? System.out.println(student.toString());
? ? ? ? }
? ? ? ? //使用默認排序
? ? ? ? Collections.sort(list);
? ? ? ? System.out.println("默認排序后:");
? ? ? ? for (Student student : list) {
? ? ? ? ? ? System.out.println(student.toString());
? ? ? ? }
}

輸出日志:
排序前:
Student{id=1, age=25, name='關(guān)羽'}
Student{id=2, age=21, name='張飛'}
Student{id=3, age=18, name='劉備'}
Student{id=4, age=32, name='袁紹'}
Student{id=5, age=36, name='趙云'}
Student{id=6, age=16, name='曹操'}
默認排序后:
Student{id=6, age=16, name='曹操'}
Student{id=3, age=18, name='劉備'}
Student{id=2, age=21, name='張飛'}
Student{id=1, age=25, name='關(guān)羽'}
Student{id=4, age=32, name='袁紹'}
Student{id=5, age=36, name='趙云'}



比較器的使用 Comparator


這個時候需求又來了,默認是用 age 排序,但是有的時候需要用 id 來排序怎么辦? 這個時候比較器 :Comparator 就排上用場了。

Comparator 的使用有兩種方式:

Collections.sort(list,Comparator<T>);
list.sort(Comparator<T>);


其實主要是看 Comparator 接口的實現(xiàn),重寫里面的 compare 方法。代碼如下:

//自定義排序1
Collections.sort(list, new Comparator<Student>() {
? ? @Override
? ? public int compare(Student o1, Student o2) {
? ? ? ? return o1.getId() - o2.getId();
? ? }
});

compare(Student o1, Student o2) 方法的返回值跟 Comparable<> 接口中的 compareTo(Student o) 方法 返回值意思相同。另一種寫法如下:

//自定義排序2
list.sort(new Comparator<Student>() {
? ? @Override
? ? public int compare(Student o1, Student o2) {
? ? ? ? return o1.getId() - o2.getId();
? ? }
});

輸出日志:
排序前:
Student{id=1, age=25, name='關(guān)羽'}
Student{id=2, age=21, name='張飛'}
Student{id=3, age=18, name='劉備'}
Student{id=4, age=32, name='袁紹'}
Student{id=5, age=36, name='趙云'}
Student{id=6, age=16, name='曹操'}
自定義排序后:
Student{id=1, age=25, name='關(guān)羽'}
Student{id=2, age=21, name='張飛'}
Student{id=3, age=18, name='劉備'}
Student{id=4, age=32, name='袁紹'}
Student{id=5, age=36, name='趙云'}
Student{id=6, age=16, name='曹操'}
?

總結(jié)

以上是生活随笔為你收集整理的Collections.sort()自定义排序方式的全部內(nèi)容,希望文章能夠幫你解決所遇到的問題。

如果覺得生活随笔網(wǎng)站內(nèi)容還不錯,歡迎將生活随笔推薦給好友。