gpt4 book ai didi

Java API Streams 在 Map 中收集流,其中值为 TreeSet

转载 作者:塔克拉玛干 更新时间:2023-11-03 04:17:08 25 4
gpt4 key购买 nike

有一个 Student 类,它有 name, surname, age 字段和它们的 getter。

给定一个 Student 对象流。

如何调用 collect 方法,使其返回 Map,其中键是 Studentage 和值是 TreeSet,其中包含具有该 age 的学生的 surname

我想使用 Collectors.toMap(),但卡住了。

我想我可以这样做并将第三个参数传递给 toMap 方法:

stream().collect(Collectors.toMap(Student::getAge, Student::getSurname, new TreeSet<String>()))`.

最佳答案

students.stream()
.collect(Collectors.groupingBy(
Student::getAge,
Collectors.mapping(
Student::getSurname,
Collectors.toCollection(TreeSet::new))
))

关于Java API Streams 在 Map 中收集流,其中值为 TreeSet,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/48609310/

25 4 0
Copyright 2021 - 2024 cfsdn All Rights Reserved 蜀ICP备2022000587号
广告合作:1813099741@qq.com 6ren.com