java8新特性之list转换
Posted MgicalFool
tags:
篇首语:本文由小常识网(cha138.com)小编为大家整理,主要介绍了java8新特性之list转换相关的知识,希望对你有一定的参考价值。
// 根据id去重
List<Person> unique = appleList.stream().collect(
collectingAndThen(
toCollection(() -> new TreeSet<>(comparingLong(Apple::getId))), ArrayList::new)
);
// 查找流中最大 最小值
Optional<Dish> maxDish = Dish.menu.stream().
collect(Collectors.maxBy(Comparator.comparing(Dish::getCalories)));
maxDish.ifPresent(System.out::println);
Optional<Dish> minDish = Dish.menu.stream().
collect(Collectors.minBy(Comparator.comparing(Dish::getCalories)));
minDish.ifPresent(System.out::println);
引自https://blog.csdn.net/lu930124/article/details/77595585
// 把对象本身当做value
public Map<Long, Account> getIdAccountMap(List<Account> accounts) {
return accounts.stream().collect(Collectors.toMap(Account::getId, account -> account));
}
以上是关于java8新特性之list转换的主要内容,如果未能解决你的问题,请参考以下文章
JAVA秒会技术之Java8新特性利用流快速处理集合的常见操作