时间:2021-05-19
方法一:实现Comparator接口,并重写compare方法
实体类代码:
import java.util.Comparator;/** * 学生类 方法一 * 实现Comparator接口 * 并重写compare方法 * @author liaot * */public class Student implements Comparator<Student>{ private String name; //姓名 private int age; //年龄 //重写 比较方法 本次例子定义为按年龄比较 @Override public int compare(Student o1, Student o2) { if(o1.getAge() > o2.getAge()){ return 1; }else{ return -1; } } public Student(String name, int age) { super(); this.name = name; this.age = age; } public String getName() { return name; } public void setName(String name) { this.name = name; } public int getAge() { return age; } public void setAge(int age) { this.age = age; }}测试类:
import java.util.ArrayList;import java.util.Collections;import java.util.List;public class Main { public static void main(String[] args) { //初始化四个不同的学生 Student stu1 = new Student("路人甲", 20); Student stu2 = new Student("路人已", 18); Student stu3 = new Student("路人丙", 16); Student stu4 = new Student("路人丁", 19); //新建List把学生加进List List<Student> stuList = new ArrayList<>(); stuList.add(stu1); stuList.add(stu2); stuList.add(stu3); stuList.add(stu4); System.out.println("排序前:====="); for(Student stu :stuList){ System.out.println("姓名:"+stu.getName() +" 年龄"+stu.getAge()); } //排序 Collections.sort(stuList, stu1); //第一个参数为List 第二个参数为对象的一个实例 System.out.println("排序后:====="); for(Student stu :stuList){ System.out.println("姓名:"+stu.getName() +" 年龄"+stu.getAge()); } }}运行结果:
方法二:实现Comparable接口 并重写compareTo方法
/** * 学生类 方法二 实现Comparable接口 并重写compareTo方法 * * @author liaot * */public class Student2 implements Comparable<Student2> { private String name; // 姓名 private int age; // 年龄 // 重写 比较方法 本次例子定义为按年龄比较 @Override public int compareTo(Student2 stu) { if (this.age > stu.getAge()) { return 1; } else { return -1; } } public Student2(String name, int age) { super(); this.name = name; this.age = age; } public String getName() { return name; } public void setName(String name) { this.name = name; } public int getAge() { return age; } public void setAge(int age) { this.age = age; }}测试类
import java.util.ArrayList;import java.util.Collections;import java.util.List;public class Main2 { public static void main(String[] args) { //初始化四个不同的学生 Student2 stu1 = new Student2("路人甲", 20); Student2 stu2 = new Student2("路人已", 18); Student2 stu3 = new Student2("路人丙", 16); Student2 stu4 = new Student2("路人丁", 19); //新建List把学生加进List List<Student2> stuList = new ArrayList<>(); stuList.add(stu1); stuList.add(stu2); stuList.add(stu3); stuList.add(stu4); System.out.println("排序前:====="); for(Student2 stu :stuList){ System.out.println("姓名:"+stu.getName() +" 年龄"+stu.getAge()); } //排序 Collections.sort(stuList); //只有一个参数参数为List System.out.println("排序后:====="); for(Student2 stu :stuList){ System.out.println("姓名:"+stu.getName() +" 年龄"+stu.getAge()); } }}运行结果
三、总结:两种方式写法和用法上的区别:
以上这篇java根据List内对象的属性排序方法就是小编分享给大家的全部内容了,希望能给大家一个参考,也希望大家多多支持。
声明:本页内容来源网络,仅供用户参考;我单位不保证亦不表示资料全面及准确无误,也不保证亦不表示这些资料为最新信息,如因任何原因,本网内容或者用户因倚赖本网内容造成任何损失或损害,我单位将不会负任何法律责任。如涉及版权问题,请提交至online#300.cn邮箱联系删除。
本文实例讲述了java实现List中对象排序的方法。分享给大家供大家参考,具体如下:packagecom.test;importjava.util.ArrayL
本文实例讲述了java中List对象排序通用方法。分享给大家供大家参考。具体分析如下:在数据库中查出来的列表list中,往往需要对不同的字段重新排序,一般的做法
java中实现list或set转map的方法在开发中我们有时需要将list或set转换为map(比如对象属性中的唯一键作为map的key,对象作为map的val
本文实例讲述了JS实现给数组对象排序的方法。分享给大家供大家参考,具体如下:JS中给数组对象排序假设有一个对象数组,我们想要根据某个对象属性对数组进行排序。而传
本文实例讲述了JS实现根据数组对象的某一属性排序操作。分享给大家供大家参考,具体如下:根据数组中对象的某一属性排序varnewArray=[{name:"aaa