java遗珠之变强了的Comparator

栏目: Java · 发布时间: 6年前

内容简介:版权声明:本文为博主原创文章,未经博主允许不得转载。 https://blog.csdn.net/lastsweetop/article/details/82854816

版权声明:本文为博主原创文章,未经博主允许不得转载。 https://blog.csdn.net/lastsweetop/article/details/82854816

一个更为强大的Comparator,可以说再也不用写侵入式的Comparable接口,而且连Comparator的lambda都可以不写了。

我先来看需要 排序 的类:

public class Person {
    public enum Sex {
        MALE, FEMALE
    }

    private String name;
    private LocalDate birthday;
    private Sex gender;
    private String emailAddress;

    Person(String nameArg, LocalDate birthdayArg,
           Sex genderArg, String emailArg) {
        name = nameArg;
        birthday = birthdayArg;
        gender = genderArg;
        emailAddress = emailArg;
    }

    public int getAge() {
        return birthday
                .until(IsoChronology.INSTANCE.dateNow())
                .getYears();
    }

    public void printPerson() {
        System.out.println(name + ", " + this.getAge());
    }

    public Sex getGender() {
        return gender;
    }

    public String getName() {
        return name;
    }

    public String getEmailAddress() {
        return emailAddress;
    }

    public LocalDate getBirthday() {
        return birthday;
    }
    
    public static List<Person> createRoster() {

        List<Person> roster = new ArrayList<>();
        roster.add(
                new Person(
                        "Bob",
                        IsoChronology.INSTANCE.date(2000, 9, 12),
                        Person.Sex.MALE, "bob@example.com"));
        roster.add(
                new Person(
                        "Fred",
                        IsoChronology.INSTANCE.date(1980, 6, 20),
                        Person.Sex.MALE,
                        "fred@example.com"));
        roster.add(
                new Person(
                        "Jane",
                        IsoChronology.INSTANCE.date(1990, 7, 15),
                        Person.Sex.FEMALE, "jane@example.com"));
        roster.add(
                new Person(
                        "George",
                        IsoChronology.INSTANCE.date(1990, 7, 15),
                        Person.Sex.MALE, "george@example.com"));

        return roster;
    }
}

编写一个测试类,并初始化数据

public class ComparotorTest {
    private static List<Person> roster;

    @BeforeClass
    public static void setup() {
        roster = Person.createRoster();
        for (Person p : roster) {
            p.printPerson();
        }

    }
}

对Person的单个字段进行排序

    @Test
    public void testWithComparing() {
        System.out.println("Comparator.comparing");
        roster.sort(Comparator.comparing(Person::getBirthday));
        roster.stream().forEach(person -> person.printPerson());
    }

对Person的多个字段进行排序

    @Test
    public void testWithComparing() {
        System.out.println("Comparator.comparing");
        roster.sort(Comparator.comparing(Person::getBirthday).thenComparing(Person::getName));
        roster.stream().forEach(person -> person.printPerson());
    }

对其中的某个字段倒序

    @Test
    public void testWithComparing() {
        System.out.println("Comparator.comparing");
        roster.sort(Comparator.comparing(Person::getBirthday).reversed().thenComparing(Person::getName));
        roster.stream().forEach(person -> person.printPerson());
    }

让其中的一个字段为空的时候放在前面或者后面

    @Test
    public void testWithComparing() {
        System.out.println("Comparator.comparing");
        roster.sort(Comparator.comparing(Person::getBirthday,Comparator.nullsLast(Comparator.reverseOrder())).thenComparing(Person::getName));
        roster.stream().forEach(person -> person.printPerson());
    }

以上就是本文的全部内容,希望本文的内容对大家的学习或者工作能带来一定的帮助,也希望大家多多支持 码农网

查看所有标签

猜你喜欢:

本站部分资源来源于网络,本站转载出于传递更多信息之目的,版权归原作者或者来源机构所有,如转载稿涉及版权问题,请联系我们

Data Structures and Algorithms in Java

Data Structures and Algorithms in Java

Michael T. Goodrich、Roberto Tamassia / Wiley / 2010-01-26 / USD 177.41

* This newest edition examines fundamental data structures by following a consistent object-oriented framework that builds intuition and analysis skills of data structures and algorithms * Presents ne......一起来看看 《Data Structures and Algorithms in Java》 这本书的介绍吧!

HTML 压缩/解压工具
HTML 压缩/解压工具

在线压缩/解压 HTML 代码

CSS 压缩/解压工具
CSS 压缩/解压工具

在线压缩/解压 CSS 代码

RGB HSV 转换
RGB HSV 转换

RGB HSV 互转工具