gpt4 book ai didi

java - 将 Set 的集合转换为列表列表

转载 作者:搜寻专家 更新时间:2023-11-01 01:12:04 24 4
gpt4 key购买 nike

我有一个 HashMap<Integer, Set<Integer>>.

我想转换 Collection of set in the map to a list of list.

例如:

import java.util.*;
import java.util.stream.*;
public class Example {

public static void main( String[] args ) {
Map<Integer,Set<Integer>> map = new HashMap<>();
Set<Integer> set1 = Stream.of(1,2,3).collect(Collectors.toSet());
Set<Integer> set2 = Stream.of(1,2).collect(Collectors.toSet());
map.put(1,set1);
map.put(2,set2);

//I tried to get the collection as a first step
Collection<Set<Integer>> collectionOfSets = map.values();

// I neeed List<List<Integer>> list = ......

//so the list should contains[[1,2,3],[1,2]]
}
}

最佳答案

 map.values()
.stream()
.map(ArrayList::new)
.collect(Collectors.toList());

你的开始很好:争取 map.values()首先。现在,如果你流式传输它,Stream 中的每个元素都将是一个 Collection<Integer>。 (每个单独的值是);并且您想将每个值转换为 List .在这种情况下,我提供了一个 ArrayList它有一个接受 Collection 的构造函数,因此 ArrayList::new方法引用用法。最后所有这些每个单独的值(一旦转换为 List )被收集到一个新的 List通过Collectors.toList()

关于java - 将 Set<Integer> 的集合转换为列表列表,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/53639764/

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