Collect all objects from a Set of Sets with Java Stream

◇◆丶佛笑我妖孽 提交于 2019-12-05 23:37:20

问题


I'm trying to learn Java Streams and trying to get a HashSet<Person> from a HashSet<SortedSet<Person>>.

HashSet<Person> students = getAllStudents();
HashSet<SortedSet<Person>> teachersForStudents = students.stream().map(Person::getTeachers).collect(Collectors.toCollection(HashSet::new));
HashSet<Person> = //combine teachers and students in one HashSet

What I really want it to combine all teachers and all students in one HashSet<Person>. I guess I'm doing something wrong when I'm collecting my stream?


回答1:


You can flatMap each student into a stream formed by the student along with their teachers:

HashSet<Person> combined = 
    students.stream()
            .flatMap(student -> Stream.concat(Stream.of(student), student.getTeachers().stream()))
            .collect(Collectors.toCollection(HashSet::new));

concat is used to concatenate to the Stream of the teachers, a Stream formed by the student itself, obtained with of.



来源:https://stackoverflow.com/questions/39466912/collect-all-objects-from-a-set-of-sets-with-java-stream

易学教程内所有资源均来自网络或用户发布的内容,如有违反法律规定的内容欢迎反馈
该文章没有解决你所遇到的问题?点击提问,说说你的问题,让更多的人一起探讨吧!