gpt4 book ai didi

java - 如何将 Collection> 转换为 List>?

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

我有以下字段

Collection<Collection<Double>> items

我想把它转换成

List<List<Double>> itemsList

我知道我可以通过 list.addAll(collection)Collection 转换为 List,但是如何转换 Collection 的 code>Collection

最佳答案

您可以使用流:

List<List<Double>> itemsList =
items.stream() // create a Stream<Collection<Double>>
.map(c->new ArrayList<Double>(c)) // map each Collection<Double> to List<Double>
.collect(Collectors.toList()); // collect to a List<List<Double>>

或者使用方法引用而不是 lambda 表达式:

List<List<Double>> itemsList =
items.stream() // create a Stream<Collection<Double>>
.map(ArrayList::new) // map each Collection<Double> to List<Double>
.collect(Collectors.toList()); // collect to a List<List<Double>>

Java 7 解决方案需要一个循环:

List<List<Double>> itemsList = new ArrayList<List<Double>>();
for (Collection<Double> col : items)
itemsList.add(new ArrayList<Double>(col));

关于java - 如何将 Collection<Collection<Double>> 转换为 List<List<Double>>?,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/40464205/

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