lambda表达式
Posted qlsty
tags:
篇首语:本文由小常识网(cha138.com)小编为大家整理,主要介绍了lambda表达式相关的知识,希望对你有一定的参考价值。
List<Person> personList = xxx;
集合过滤
personList.stream.filter(x->x.getAge()>20).collect(Collectors.toList());
对象取字段
List<String> names = personList.stream.map(Person::getName()).collect(Collectors.toList());
分组
groupingBy()
List转Map
Map<String,Person> personMap = personList.stream.toMap(x->getId(),x);
以上是关于lambda表达式的主要内容,如果未能解决你的问题,请参考以下文章