https://www.youtube.com/watch?v=VUh_t_j9qjE&list=PLW2UjW795-f6xWA2_MUhEVgPauhGl3xIp&index=171 본 강의는 위 강의를 듣고 정리를 진행했습니다. partitioningBy()는 스트림을 2분할 한다. groupingBy()는 스트림을 n분할 한다. Collector partitioingBy(Predicate predicate) Map stuBySex = stuStream.collect(paritioingBy(Student::isMale)); List maleStudent = stuBySex.get(true); List femaleStudent = stuBySex.get(false); Map stuNumBySex = stuStream...