gpt4 book ai didi

java - 将数组列表转换为数组数组

转载 作者:塔克拉玛干 更新时间:2023-11-03 04:57:03 26 4
gpt4 key购买 nike

我有一个这样的列表:

List<MyObject[]> list= new LinkedList<MyObject[]>();

像这样在 Object 上:

MyObject[][] myMatrix;

如何将“列表”分配给“myMatrix”?

我不想遍历列表并逐个元素分配给 MyMatrix,但如果可能的话我想直接分配它(通过适当的修改)。谢谢

最佳答案

你可以使用toArray(T[])

import java.util.*;
public class Test{
public static void main(String[] a){
List<String[]> list=new ArrayList<String[]>();
String[][] matrix=new String[list.size()][];
matrix=list.toArray(matrix);
}
}

Javadoc

关于java - 将数组列表转换为数组数组,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/5803619/

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