Java API Streams在Map中收集流,其中value是TreeSet

前端之家收集整理的这篇文章主要介绍了Java API Streams在Map中收集流,其中value是TreeSet前端之家小编觉得挺不错的,现在分享给大家,也给大家做个参考。
有一个学生班,有姓名,姓氏,年龄段和吸气剂.

给定一个Student对象流.

如何调用一个collect方法,使其返回Key为Student年龄的Map,值为TreeSet,其中包含具有此类年龄的学生的姓氏.

我想使用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))           
))
原文链接:https://www.f2er.com/java/120957.html

猜你在找的Java相关文章