Java 常用类库 之 比较接口 Comparator

简介:

http://www.verejava.com/?id=169931036202101

/**
    知识点: 比较类 Comparator

    题目: 将某班学生按数学成绩从小到大排序

    思路:
        1. 抽象出类:
            1.1 班级(ClassSet)
            1.2 学生(Student)
        2. 找出类关系:
            2.1 学生 属于 班级 Student -> ClassSet(多对1)
        3. 找出类属性:
            3.1 ClassSet(班级名称,班级人数)
            3.2 Student(学生名称,数学成绩)
        4. 找出类方法:
            4.1 学生添加到班级 ClassSet{addStudent(Student s)}
            4.2 学生成绩从小到大排序  ClassSet{sortByScore()}
*/
import java.util.Arrays;
import java.util.Comparator;

public class TestComparator {
    
    public static void main(String[] args) {
        //实例化4G班级
        ClassSet c = new ClassSet("4G", 4);
        //添加学生
        c.addStudent(new Student("李明", 90));
        c.addStudent(new Student("李浩", 80));
        c.addStudent(new Student("王涛", 95));
        c.addStudent(new Student("张胜", 70));

        //获得4G班级学生数组集合
        Student[] students = c.getStudents();
        //输出学生信息
        for (Student s : students) {
            if (s != null)
                System.out.println(s.getName() + "," + s.getMathScore());
        }

        System.out.println("\n根据学生成绩升序排序");
        Arrays.sort(students, new StudentAscComparator());
        for (Student s : students) {
            if (s != null)
                System.out.println(s.getName() + "," + s.getMathScore());
        }

        System.out.println("\n根据学生成绩降序排序");
        Arrays.sort(students, new StudentDescComparator());
        for (Student s : students) {
            if (s != null)
                System.out.println(s.getName() + "," + s.getMathScore());
        }

    }
}

class ClassSet {
    private String className;//班级名称
    private int maxSize;//班级学生人数
    private int currentSize;//当前多少学生
    private Student[] students;//所有学生的数组

    public ClassSet(String className, int maxSize) {
        this.className = className;
        this.maxSize = maxSize;
        students = new Student[maxSize];
    }

    public Student[] getStudents() {
        return this.students;
    }

    /**
        添加学生
    */
    public void addStudent(Student s) {
        for (int i = 0; i < students.length; i++) {
            if (students[i] == null) {
                students[i] = s;
                currentSize++;
                break;
            }
        }
    }

}

class Student {
    private String name;//学生姓名
    private int mathScore;//数学成绩

    public Student(String name, int mathScore) {
        this.name = name;
        this.mathScore = mathScore;
    }

    public String getName() {
        return this.name;
    }

    public void setName(String name) {
        this.name = name;
    }

    public int getMathScore() {
        return this.mathScore;
    }

    public void setMathScore(int mathScore) {
        this.mathScore = mathScore;
    }
}

/**
    学生升序排列
*/
class StudentAscComparator implements Comparator {
    public int compare(Object o1, Object o2) {
        if ((o1 instanceof Student) && (o2 instanceof Student)) {
            Student s1 = (Student) o1;
            Student s2 = (Student) o2;
            if (s1.getMathScore() > s2.getMathScore())
                return 1;
            if (s1.getMathScore() < s2.getMathScore())
                return -1;
        }
        return 0;
    }
}

/**
    学生降序排列
*/
class StudentDescComparator implements Comparator {
    public int compare(Object o1, Object o2) {
        if ((o1 instanceof Student) && (o2 instanceof Student)) {
            Student s1 = (Student) o1;
            Student s2 = (Student) o2;
            if (s1.getMathScore() > s2.getMathScore())
                return -1;
            if (s1.getMathScore() < s2.getMathScore())
                return 1;
        }
        return 0;
    }
}

http://www.verejava.com/?id=169931036202101

目录
相关文章
|
2月前
|
Java
在Java中如何实现接口?
实现接口是 Java 编程中的一个重要环节,它有助于提高代码的规范性、可扩展性和复用性。通过正确地实现接口,可以使代码更加灵活、易于维护和扩展。
185 64
|
2月前
|
Java 开发者
在 Java 中,一个类可以实现多个接口吗?
这是 Java 面向对象编程的一个重要特性,它提供了极大的灵活性和扩展性。
164 57
|
2月前
|
Java
在Java中实现接口的具体代码示例
可以根据具体的需求,创建更多的类来实现这个接口,以满足不同形状的计算需求。希望这个示例对你理解在 Java 中如何实现接口有所帮助。
92 38
|
19天前
|
数据采集 JSON Java
利用Java获取京东SKU接口指南
本文介绍如何使用Java通过京东API获取商品SKU信息。首先,需注册京东开放平台账号并创建应用以获取AppKey和AppSecret。接着,查阅API文档了解调用方法。明确商品ID后,构建请求参数并通过HTTP客户端发送请求。最后,解析返回的JSON数据提取SKU信息。注意遵守API调用频率限制及数据保护法规。此方法适用于电商平台及其他数据获取场景。
|
24天前
|
安全 Java API
java如何请求接口然后终止某个线程
通过本文的介绍,您应该能够理解如何在Java中请求接口并根据返回结果终止某个线程。合理使用标志位或 `interrupt`方法可以确保线程的安全终止,而处理好网络请求中的各种异常情况,可以提高程序的稳定性和可靠性。
46 6
|
2月前
|
Java API
Java中内置的函数式接口
Java中内置的函数式接口
29 2
|
2月前
|
Java
在Java中,接口之间可以继承吗?
接口继承是一种重要的机制,它允许一个接口从另一个或多个接口继承方法和常量。
134 1
|
缓存 Java API
Java-类库-Guava
 Guava 是一个 Google 的基于java1.6的类库集合的扩展项目,包括 collections, caching, primitives support, concurrency libraries, common annotations, string processing, I/O, 等等. 这些高质量的 API 可以使你的JAVa代码更加优雅,更加简洁,让你工作更加轻松愉悦。
1483 0
|
Java
Java-类库-Guava-复写的Object常用方法
 在Java中Object类是所有类的父类,其中有几个需要override的方法比如equals,hashCode和toString等方法。每次写这几个方法都要做很多重复性的判断, 很多类库提供了覆写这几个方法的工具类, Guava也提供了类似的方式。
944 0
Java-类库-Guava-Throwables类
有时候, 当我们我们捕获异常, 并且像把这个异常传递到下一个try/catch块中。Guava提供了一个异常处理工具类, 可以简单地捕获和重新抛出多个异常。 import java.
1009 0