Skip to content

Instantly share code, notes, and snippets.

@khamiltonuk
Created November 29, 2015 10:47
Show Gist options
  • Select an option

  • Save khamiltonuk/996ddf27e85f3ee969c7 to your computer and use it in GitHub Desktop.

Select an option

Save khamiltonuk/996ddf27e85f3ee969c7 to your computer and use it in GitHub Desktop.
Java 8 is Coming
Map<Person.Sex, Double> averageAgeByGender = roster
.stream()
.collect(
Collectors.groupingBy(
Person::getGender,
Collectors.averagingInt(Person::getAge)));
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment