Java使用Collections工具类对List集合进行排序

网友投稿 291 2022-12-24


Java使用Collections工具类对List集合进行排序

这篇文章主要介绍了java使用Collections工具类对List集合进行排序,文中通过示例代码介绍的非常详细,对大家的学习或者工作具有一定的参考学习价值,需要的朋友可以参考下

一、说明

使用Collections工具类的sort方法对list进行排序

新建比较器Comparator

二、代码

排序:

import java.util.ArrayList;

import java.util.Collections;

import java.util.Comparator;

import java.AllrHNczautil.List;

public class Test {

public static void main(String[] args) {

List list = new ArrayList();

//创建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(){

/*

* 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()){

http:// return 0;

}

return -1;

}

});

System.out.println("排序后:"+list);

}

}

StudAllrHNczaent类:

class Student{

private int age;

public int getAge() {

return age;

}

public void setAge(int age) {

this.age = age;

}

@Override

public String toString() {

return getAge()+"";

}

}


版权声明:本文内容由网络用户投稿,版权归原作者所有,本站不拥有其著作权,亦不承担相应法律责任。如果您发现本站中有涉嫌抄袭或描述失实的内容,请联系我们jiasou666@gmail.com 处理,核实后本网站将在24小时内删除侵权内容。

上一篇:IDEA中log4j 无法输出到本地 properties配置无效问题
下一篇:Spring JPA整合QueryDSL的示例代码
相关文章

 发表评论

暂时没有评论,来抢沙发吧~