溫馨提示×

溫馨提示×

您好,登錄后才能下訂單哦!

密碼登錄×
登錄注冊×
其他方式登錄
點擊 登錄注冊 即表示同意《億速云用戶服務(wù)條款》

Java中怎么利用Collections工具類對List集合進行排序

發(fā)布時間:2021-08-12 15:00:13 來源:億速云 閱讀:129 作者:Leah 欄目:編程語言

Java中怎么利用Collections工具類對List集合進行排序,針對這個問題,這篇文章詳細(xì)介紹了相對應(yīng)的分析和解答,希望可以幫助更多想解決這個問題的小伙伴找到更簡單易行的方法。

一、說明

使用Collections工具類的sort方法對list進行排序

新建比較器Comparator

二、代碼

排序:

import java.util.ArrayList;import java.util.Collections;import java.util.Comparator;import java.util.List;public class Test {  public static void main(String[] args) {    List<Student> list = new ArrayList<Student>();    //創(chuàng)建3個學(xué)生對象,年齡分別是20、19、21,并將他們依次放入List中    Student s1 = new Student();    s1.setAge(20);    Student s2 = new Student();    s2.setAge(19);    Student s3 = new Student();    s3.setAge(21);    list.add(s1);    list.add(s2);    list.add(s3);    System.out.println("排序前:"+list);    Collections.sort(list, new Comparator<Student>(){      /*       * int compare(Student o1, Student o2) 返回一個基本類型的整型,       * 返回負(fù)數(shù)表示:o1 小于o2,       * 返回0 表示:o1和o2相等,       * 返回正數(shù)表示:o1大于o2。       */      public int compare(Student o1, Student o2) {        //按照學(xué)生的年齡進行升序排列        if(o1.getAge() > o2.getAge()){          return 1;        }        if(o1.getAge() == o2.getAge()){          return 0;        }        return -1;      }    });     System.out.println("排序后:"+list);  }}

Student類:

class Student{  private int age;  public int getAge() {    return age;  }  public void setAge(int age) {    this.age = age;  }  @Override  public String toString() {    return getAge()+"";  }}

關(guān)于Java中怎么利用Collections工具類對List集合進行排序問題的解答就分享到這里了,希望以上內(nèi)容可以對大家有一定的幫助,如果你還有很多疑惑沒有解開,可以關(guān)注億速云行業(yè)資訊頻道了解更多相關(guān)知識。

向AI問一下細(xì)節(jié)

免責(zé)聲明:本站發(fā)布的內(nèi)容(圖片、視頻和文字)以原創(chuàng)、轉(zhuǎn)載和分享為主,文章觀點不代表本網(wǎng)站立場,如果涉及侵權(quán)請聯(lián)系站長郵箱:is@yisu.com進行舉報,并提供相關(guān)證據(jù),一經(jīng)查實,將立刻刪除涉嫌侵權(quán)內(nèi)容。

AI