我有模型人 [城市,名称]。我已在地图中收集它们并按城市对它们进行分组。我需要追踪最没有人住在那里的城市,并只返回该条目作为地图的一部分。我试过了,它也可以工作,但我想知道有没有更好的方法。
Comparator<Entry<String, List<Person>>> compareByCityPopulation =
Comparator.comparing(Entry<String, List<Person>>::getValue, (s1, s2) -> {
return s1.size() - s2.size();
});
HashMap mapOfMostPopulatedCity = persons.stream()
.collect(Collectors.collectingAndThen(Collectors.groupingBy(Person::getCity), m -> {
Entry<String, List<Person>> found = m.entrySet().stream().max(compareByCityPopulation).get();
HashMap<String, List<Person>> hMap = new HashMap<>();
hMap.put(found.getKey(), found.getValue());
return hMap;
}));
System.out.println("*City with Most no of people*");
mapOfMostPopulatedCity.forEach((place, peopleDetail) -> System.out.println("Places " + place + "-people detail-" + peopleDetail));
请建议我们如何在 java 8 中编写得更好。
阿波罗的战车
holdtom
相关分类