为了账号安全,请及时绑定邮箱和手机立即绑定

比较器比较内部列表字段

比较器比较内部列表字段

胡子哥哥 2023-10-12 14:45:43
我有一个这样的模型class Person {     Instant updateDate; // mandatory     List<Account> accounts; // can be empty}class Account {    Instant accountUpdateDate; // can be null}  假设我有一个人员列表(每个人都包含可以为空的帐户列表)我怎样才能获得具有最大 accountUpdateDate 的人,否则我应该检索具有最大 updateDate 的人。类似这样的事情Comparator<Person> UPDATE_DATE_COMPARATOR = Comparator    .comparing(person -> person.getAccounts().stream().map(Account::getAccountUpdateDate)..., Comparator.nullsFirst(naturalOrder()))    .thenComparing(Person::getUpdateDate));Collections.max(personList, UPDATE_DATE_COMPARATOR);
查看完整描述

1 回答

?
MM们

TA贡献1886条经验 获得超2个赞

一种方法是使用orElseGet分离这两种功能,例如:


Supplier<Person> supplyMaxUpdateDatePerson = () -> personList.stream()

        .max(Comparator.comparing(Person::getUpdateDate))

        .orElse(null); // or an identity value equivalent for 'Person'


Person maxAccountUpdateDateOrElseUpdateDate = personList.stream()

        .flatMap(person -> person.getAccounts().stream()

                .map(account -> new AbstractMap.SimpleEntry<>(person, account.getAccountUpdateDate())))

        .filter(entry -> entry.getValue() != null) // otherwise you would always have a result in max

        .max(Comparator.comparing(AbstractMap.SimpleEntry::getValue))

        .map(AbstractMap.SimpleEntry::getKey)

        .orElseGet(supplyMaxUpdateDatePerson); // invoked only when all 'accountUpdateDate' are 'null'



查看完整回答
反对 回复 2023-10-12
  • 1 回答
  • 0 关注
  • 62 浏览

添加回答

举报

0/150
提交
取消
意见反馈 帮助中心 APP下载
官方微信