如果我们想象,我们有一个名为 person 的对象,而 person 看起来像下面这样:
class Person {
int id;
String name;
String country
// ...
// getter/setter
}
我们有一个List
对象Person
,我们想将其“转换”为地图。我们可以使用以下内容:
Map<Long, List<Person>> collect = personList.stream().
collect(Collectors.toMap(Person::getId, p -> p));
但是是否可以为 valuemapper 返回一个默认值并更改 valuemapper 的类型?
我想过这样的事情:
Map<Long, List<Person>> collect =
personList.stream().collect(Collectors.groupingBy(Person::getId, 0));
但有了这个我得到以下错误is not applicable for the arguments
我有一个解决方法,但我认为它不是很漂亮。
Map<Long, Object> collect2 = personList.stream().
collect(Collectors.toMap(Person::getId, pe -> {
return 0;
}));