gpt4 book ai didi

java - map 中的 map 条目列表

转载 作者:行者123 更新时间:2023-12-01 16:46:22 28 4
gpt4 key购买 nike

我正在尝试从 map 中获取 map 条目(按值排序)列表。我试过这个:

List<Pair<String, AtomicInteger>> expectedList = expectedMap.entrySet().stream()
.sorted(Comparator.comparing(e -> -e.getValue().get()))
.map(e -> new Pair<>(e.getKey(), e.getValue())).collect(Collectors.toList());

但是如果我尝试用 Map.Entry 替换 Pair,它会告诉我 Map.Entry 是抽象的,无法实例化。有没有办法调整此结构以获取条目列表而不是对列表?

最佳答案

请参阅Javadoc for Map.Entry :

Interface Map.Entry

All Known Implementing Classes:
AbstractMap.SimpleEntry, AbstractMap.SimpleImmutableEntry

例如,选择一个适合您需求的实现类

List<Entry<String, AtomicInteger>> expectedList = expectedMap.entrySet().stream()
.sorted(Comparator.comparingInt(e -> -e.getValue().get()))
.map(e -> new AbstractMap.SimpleEntry<>(e.getKey(), e.getValue()))
.collect(Collectors.toList());

但是您也可以删除 map 并使用 entrySet() 返回的条目:

List<Entry<String, AtomicInteger>> expectedList = expectedMap.entrySet().stream()
.sorted(Comparator.comparingInt(e -> -e.getValue().get()))
.collect(Collectors.toList());

PS.:如果您要比较原始数据类型,您应该使用正确的方法,例如 comparingInt。这避免了不必要的拳击。

关于java - map 中的 map 条目列表,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/49796813/

28 4 0
Copyright 2021 - 2024 cfsdn All Rights Reserved 蜀ICP备2022000587号
广告合作:1813099741@qq.com 6ren.com