码迷,mamicode.com
首页 > 编程语言 > 详细

对List集合进行排序

时间:2019-10-25 09:38:11      阅读:69      评论:0      收藏:0      [点我收藏+]

标签:source   href   sys   tps   html   data-   http   返回   对list进行排序   

转自:https://www.cnblogs.com/wslook/p/9385871.html

一、说明

  • 使用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>();

        //创建3个学生对象,年龄分别是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) 返回一个基本类型的整型,
             * 返回负数表示:o1 小于o2,
             * 返回0 表示:o1和o2相等,
             * 返回正数表示:o1大于o2。
             */
            public int compare(Student o1, Student o2) {

                //按照学生的年龄进行升序排列
                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()+"";
    }
}
技术图片

对List集合进行排序

标签:source   href   sys   tps   html   data-   http   返回   对list进行排序   

原文地址:https://www.cnblogs.com/sharpest/p/11736220.html

(0)
(0)
   
举报
评论 一句话评论(0
登录后才能评论!
© 2014 mamicode.com 版权所有  联系我们:gaon5@hotmail.com
迷上了代码!