关于List集合中元素排序问题
2021-06-17 04:06
标签:date des esc integer rip imp new 排序 add 问题描述: 有一个list集合,其中元素是Student对象,根据student的age排序。 Student对象 此类需要实现Comparable接口,重写compareTo方法 测试类: 利用Collections.sort()方法进行重排序。 输出结果: 正序倒序,只需改变实体中的compareTo方法即可。 关于List集合中元素排序问题 标签:date des esc integer rip imp new 排序 add 原文地址:https://www.cnblogs.com/zhangjianbing/p/9722210.html/**
* description
*
* @author 70KG
* @date 2018/9/29
*/
@Data
public class Student implements Comparable
/**
* description
*
* @author 70KG
* @date 2018/9/29
*/
public class TestController {
public static void main(String[] args) {
List
[Student(name=赵六, age=24, num=4), Student(name=张三, age=21, num=1), Student(name=李四, age=22, num=2), Student(name=王五, age=23, num=3)]
[Student(name=赵六, age=24, num=4), Student(name=王五, age=23, num=3), Student(name=李四, age=22, num=2), Student(name=张三, age=21, num=1)]