gpt4 book ai didi

c# - 动态创建的锯齿状矩形阵列

转载 作者:太空狗 更新时间:2023-10-29 21:20:24 33 4
gpt4 key购买 nike

在我的项目中有很多这样的代码:

int[][] a = new int[firstDimension][];
for (int i=0; i<firstDimension; i++)
{
a[i] = new int[secondDimension];
}

元素类型不同

有没有什么方法可以写成这样的方法

createArray(typeof(int), firstDimension, secondDimension);

并获取 new int[firstDimension][secondDimension]

再一次,元素的类型只在运行时才知道。

最佳答案

泛型应该可以解决问题:

static T[][] CreateArray<T>(int rows, int cols)
{
T[][] array = new T[rows][];
for (int i = 0; i < array.GetLength(0); i++)
array[i] = new T[cols];

return array;
}

调用时必须指定类型:

char[][] data = CreateArray<char>(10, 20);

关于c# - 动态创建的锯齿状矩形阵列,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/2458486/

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