我是靠谱客的博主 傻傻凉面,最近开发中收集的这篇文章主要介绍java中Collections对自定义对象进行sort(),觉得挺不错的,现在分享给大家,希望可以做个参考。

概述

基础学生类

package itcast02;

public class Student implements Comparable<Student> {
    // 学生姓名
    private String name;
    // 学生年龄
    private int age;

    // 无参构造
    public Student() {
        super();
    }

    // 带参构造
    public Student(String name, int age) {
        super();
        this.name = name;
        this.age = age;
    }

    // getXxx() setXxx()方法
    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;
    }

    @Override
    public int compareTo(Student s) {
        int num = this.age - s.age;
        int num2 = num == 0 ? this.name.compareTo(s.name) : num;
        return num2;
    }

}

实现类

package itcast02;

import java.util.ArrayList;
import java.util.Collections;
import java.util.Comparator;
import java.util.List;

/**
 * Collections不仅可以针对ArrayList存储基本包装类的元素排序,还可以对自定义对象进行排序。
 * 
 * @author lgt
 *
 */
public class CollectionsDemo {
    public static <T> void main(String[] args) {
        // 创建集合对象
        List<Student> list = new ArrayList<Student>();

        // 创建学生对象
        Student s1 = new Student("荆轲", 20);
        Student s2 = new Student("亚瑟", 49);
        Student s3 = new Student("鲁班七号", 28);
        Student s4 = new Student("兰陵王", 36);
        Student s5 = new Student("后羿", 12);

        // 添加学生对象到list
        list.add(s1);
        list.add(s2);
        list.add(s3);
        list.add(s4);
        list.add(s5);

        // 遍历
        System.out.println("------------原始顺序---------------");
        for (Student s : list) {
            System.out.println(s.getName() + "---" + s.getAge());
        }

//      //自然排序
//      Collections.sort(list);
//      
//      //遍历
//      System.out.println("------------自然排序---------------");
//      for(Student s : list){
//          System.out.println(s.getName() + "---" + s.getAge());
//      }

        // 如果同时有比较器排序和自然排序,以比较器排序结果为最终结果
        // 比较器排序
        Collections.sort(list, new Comparator<Student>() {
            @Override
            public int compare(Student s1, Student s2) {
                int num = s1.getAge() - s2.getAge();
                int num2 = num == 0 ? s1.getName().compareTo(s2.getName()) : num;
                return num2;
            }

        });

        // 遍历
        System.out.println("------------比较器排序--------------");
        for (Student s : list) {
            System.out.println(s.getName() + "---" + s.getAge());
        }
    }
}

最后

以上就是傻傻凉面为你收集整理的java中Collections对自定义对象进行sort()的全部内容,希望文章能够帮你解决java中Collections对自定义对象进行sort()所遇到的程序开发问题。

如果觉得靠谱客网站的内容还不错,欢迎将靠谱客网站推荐给程序员好友。

本图文内容来源于网友提供,作为学习参考使用,或来自网络收集整理,版权属于原作者所有。
点赞(62)

评论列表共有 0 条评论

立即
投稿
返回
顶部