问题
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