关于C#里面foreach遍历交错数组的问题

请问这个代码为什么会报错?
2025-04-03 12:15:35
推荐回答(2个)
回答1:

一维数组:不解释你懂的 遍历:
int[] arr = new int[] { 1, 2, 3, 4 };
for (int i = 0; i < arr.Length; i++)
{
MessageBox.Show(arr[i].ToString());
}

多为数组:就是不是一维的数组 - -! 遍历:
int[,] arr1 = new int[,] { { 1, 2 }, { 3, 4 }, { 5, 6 } };
for (int i = 0; i < arr1.GetLength(0); i++)
{
for (int j = 0; j < arr1.GetLength(1); j++)
{
MessageBox.Show(arr1[i, j].ToString());
}
}

交错数组:就是数组的数组 遍历:
int[][] arr2 = new int[][] { new int[] { 4, 3 }, new[] { 2, 1 } };
for (int i = 0; i < arr2.GetLength(0); i++)
{
for (int j = 0; j < arr2[i].Length; j++)
{
MessageBox.Show(arr2[i][j].ToString());
}
}

foreach当然也可以做,但是一般数组还是用for比较好,如果你想要foreach的联系我吧
///===================================
不知道你为什么还不选我,难道你要的三维以上哪种么?我再给你个三维的例子,你可以对比自己改四维

int[, ,] arr1 = new int[,,] { { { 1, 2, 3 }, { 4, 5, 6 } }, { { 7, 8, 9 }, { 10, 11, 12 } } };

for (int i = 0; i < arr1.GetLength(0); i++)
{
for (int j = 0; j < arr1.GetLength(1); j++)
{
for (int z = 0; z < arr1.GetLength(2); z++)
{
MessageBox.Show(arr1[i, j, z].ToString());
}
}
}

int[][][] arr2 = new int[][][] { new int[][] { new int[] { 1, 2, 3 }, new int[] { 4, 5 } }, new int[][] { new int[] { 6 }, new int[] { 7, 8 } } };
for (int i = 0; i < arr2.GetLength(0); i++)
{
for (int j = 0; j < arr2[i].Length; j++)
{
for (int z = 0; z < arr2[i][j].Length; z++)
{
MessageBox.Show(arr2[i][j][z].ToString());
}
}
}

每多一维多一层循环就行了。

回答2:

int[] 并不是一种类型,它是一个数组,数组的类型是Array
将int[]换成Array或者var