gpt4 book ai didi

java - 在 Java 中将 List> 转换为 List

转载 作者:搜寻专家 更新时间:2023-10-31 08:08:14 24 4
gpt4 key购买 nike

除了 for 循环之外,是否有一种方便的方法进行这种转换,例如

List<Map.Entry<String, Integer>> entryList = new List<>(//initialization);
List<String>> keyList = new List<>(entryList.size());
for (Map.Entry<String, Integer> e : entryList) {
keyList.add(e.getKey());
}

我希望保留顺序。

最佳答案

使用 java 8 流来转换它:

List<Map.Entry<String, ?>> entryList = new List<>(//initialization);
List<String> stringList = entryList.stream().map(Entry::getKey).collect(Collectors.toList());

这使得 stream的条目,然后使用 map 方法将它们转换为字符串,然后使用 Collectors.toList() 将其收集到列表中.

或者,如果您多次需要它,可以在辅助函数中更改此方法,如下所示:

public static <K> List<K> getKeys(List<Map.Entry<K,?>> entryList) {
return entryList.stream().map(Entry::getKey).collect(Collectors.toList());
}

public static <V> List<V> getValues(List<Map.Entry<?,V>> entryList) {
return entryList.stream().map(Entry::getValue).collect(Collectors.toList());
}

虽然上面的代码有效,但您还可以获得 List<K>从 map 上做 new ArrayList<>(map.keySet()) ,这比您不需要转换 entryset 更具优势到列表,然后转换为流,然后再次返回列表。

关于java - 在 Java 中将 List<Map.Entry<Key, Value>> 转换为 List<Key>,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/34777040/

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