中文字幕av专区_日韩电影在线播放_精品国产精品久久一区免费式_av在线免费观看网站

溫馨提示×

溫馨提示×

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

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

Java Collections.sort()排序代碼案例

發布時間:2020-10-14 13:34:21 來源:腳本之家 閱讀:136 作者:進進進出出 欄目:編程語言

1、案例:

Person對象(名字,id,年齡)

要求按照,年齡從小到大排序,年齡相等,按照名字的字典順序de倒序排序

2、案例設計:

     1)使用ArrayList存儲Person對象,

      2)利用Collections.sort()進行排序

      3)輸出結果

3、代碼分享:

package CollectionDemo;

import java.util.ArrayList;
import java.util.Collections;
import java.util.List;
import java.util.Comparator;
class Person{
  private int id;
  private int age;
  private String name;

  public Person(int id, int age,String name){
    this.id=id;
    this.age=age;
    this.name=name;
  }
  public void setId(int id) {
    this.id = id;
  }

  public void setAge(int age) {
    this.age = age;
  }
  public void setName(String name){
    this.name=name;
  }

  public int getId() {
    return id;
  }

  public int getAge() {
    return age;
  }

  public String getName() {
    return name;
  }

  @Override
  public String toString() {
    return "Person{" +
        "id=" + id +
        ", age=" + age +
        ", name='" + name + '\'' +
        '}';
  }
}

public class CollectionDemo2 {
  public static void main(String[] args){
    List<Person> arrayList =new ArrayList<>();
    arrayList.add(new Person(001,20,"yang"));
    arrayList.add(new Person(002,20,"zhang"));
    arrayList.add(new Person(003,30,"li"));
    arrayList.add(new Person(004,40,"Coco"));
    arrayList.add(new Person(005,40,"Marry"));
    Collections.sort(arrayList,new Comparator<Person>(){
      public int compare(Person o1,Person o2){
        if(o1.getAge()!=o2.getAge()){
          return o1.getAge()-o2.getAge();//按照年齡升序排序
        }else{
          return o2.getName().compareToIgnoreCase(o1.getName());//按照名字的字典順序倒序排序
        }
      }
    });
    //輸出
    for(Person p:arrayList){
      System.out.println(p);
    }
  }
}

輸出:

Person{id=2, age=20, name='zhang'}
Person{id=1, age=20, name='yang'}
Person{id=3, age=30, name='li'}
Person{id=5, age=40, name='Marry'}
Person{id=4, age=40, name='Coco'}

以上就是本文的全部內容,希望對大家的學習有所幫助,也希望大家多多支持億速云。

向AI問一下細節

免責聲明:本站發布的內容(圖片、視頻和文字)以原創、轉載和分享為主,文章觀點不代表本網站立場,如果涉及侵權請聯系站長郵箱:is@yisu.com進行舉報,并提供相關證據,一經查實,將立刻刪除涉嫌侵權內容。

AI

曲阜市| 鄂尔多斯市| 安多县| 连州市| 天柱县| 贵州省| 泌阳县| 武城县| 平度市| 磐石市| 曲松县| 宜都市| 安国市| 宜州市| 巨鹿县| 柳州市| 呼玛县| 岑溪市| 手游| 文成县| 娱乐| 霍山县| 县级市| 舟山市| 泰和县| 锦屏县| 桂阳县| 南雄市| 扶沟县| 武穴市| 宣城市| 明水县| 黄浦区| 白沙| 新竹县| 大同县| 察哈| 张家界市| 海安县| 龙里县| 吴江市|