📅  最后修改于: 2023-12-03 15:39:38.429000             🧑  作者: Mango
Foreach 是一种循环结构,它可以遍历集合中的每个元素。但是,很多程序员都会问:我们能不能让 foreach 嵌套使用呢?
答案是肯定的。Foreach 可以嵌套使用,以处理多维数组或多级集合。
嵌套 foreach 的语法如下:
foreach (item1 in collection1)
{
foreach (item2 in collection2)
{
/* code to be executed */
}
}
其中,item1 和 item2 是循环控制变量,collection1 和 collection2 是要遍历的集合。
下面是一个示例,演示了如何嵌套使用 foreach 遍历一个二维数组:
int[][] myArray = new int[3][];
myArray[0] = new int[] {1, 2, 3};
myArray[1] = new int[] {4, 5, 6};
myArray[2] = new int[] {7, 8, 9};
foreach (int[] row in myArray) // 遍历第一维
{
foreach (int number in row) // 遍历第二维
{
Console.Write(number + " ");
}
Console.WriteLine();
}
上述代码将输出以下内容:
1 2 3
4 5 6
7 8 9
在嵌套使用 foreach 时,需要注意以下几点:
虽然嵌套 foreach 会导致一些性能问题,但它是一种非常有用的技术,可以处理多维数组和多级集合。在编写嵌套的 foreach 代码时,需要注意代码的可读性和性能问题。