Comparator比较器的定义与使用

import java.util.Arrays;
import java.util.Comparator;

public class TestComparator {

    public static class Student {
        public String name;
        public int id;
        public int age;
        public int gao;

        public Student(String name, int id, int age,int gao) {
            this.name = name;
            this.id = id;
            this.age = age;
            this.gao = gao;
        }
    }

    public static class IdAscendingComparator implements Comparator<Student> {

        @Override
        public int compare(Student o1, Student o2) {
            return o1.id - o2.id;
        }

    }

    public static class IdDescendingComparator implements Comparator<Student> {

        @Override
        public int compare(Student o1, Student o2) {
            return o2.id - o1.id;
        }

    }

    public static class AgeAscendingComparator implements Comparator<Student> {

        @Override
        public int compare(Student o1, Student o2) {
            return o1.age - o2.age;
        }

    }

    public static class AgeDescendingComparator implements Comparator<Student> {

        @Override
        public int compare(Student o1, Student o2) {
            return o2.age - o1.age;
        }

    }
    public static class gaoComparator implements Comparator<Student> {


        @Override
        public int compare(Student o1, Student o2) {
            return o1.gao - o2.gao;
        }
    }
    public static class Descending implements Comparator<Student> {


        @Override
        public int compare(Student o1, Student o2) {
            return o2.gao - o1.gao;
        }
    }


    public static void printStudents(Student[] students) {
        for (Student student : students) {
            System.out.println("Name : " + student.name + ", Id : " + student.id + ", Age : " + student.age + ", gao : " + student.gao);
        }
        System.out.println("===========================");
    }


    public static void main(String[] args) {
        Student student1 = new Student("A", 1, 23 ,156);
        Student student2 = new Student("B", 2, 21,199);
        Student student3 = new Student("C", 3, 22,195);

        Student[] students = new Student[]{student3, student2, student1};
        printStudents(students);

        Arrays.sort(students,new gaoComparator());
        printStudents(students);

        Arrays.sort(students,new Descending());
        printStudents(students);

        /*Arrays.sort(students, new IdAscendingComparator());
        printStudents(students);

        Arrays.sort(students, new IdDescendingComparator());
        printStudents(students);

        Arrays.sort(students, new AgeAscendingComparator());
        printStudents(students);

        Arrays.sort(students, new AgeDescendingComparator());
        printStudents(students);*/

    }

}

  • 0
    点赞
  • 0
    收藏
    觉得还不错? 一键收藏
  • 0
    评论
评论
添加红包

请填写红包祝福语或标题

红包个数最小为10个

红包金额最低5元

当前余额3.43前往充值 >
需支付:10.00
成就一亿技术人!
领取后你会自动成为博主和红包主的粉丝 规则
hope_wisdom
发出的红包
实付
使用余额支付
点击重新获取
扫码支付
钱包余额 0

抵扣说明:

1.余额是钱包充值的虚拟货币,按照1:1的比例进行支付金额的抵扣。
2.余额无法直接购买下载,可以购买VIP、付费专栏及课程。

余额充值