在C#中,使用foreach
循環遍歷數組是一種簡潔、高效的方法
foreach
循環遍歷數組:int[] numbers = { 1, 2, 3, 4, 5 };
foreach (int number in numbers)
{
Console.WriteLine(number);
}
for
循環和數組的Length
屬性。但是,請注意,這種方法不如foreach
循環簡潔。int[] numbers = { 1, 2, 3, 4, 5 };
for (int i = 0; i< numbers.Length; i++)
{
Console.WriteLine($"Index: {i}, Value: {numbers[i]}");
}
for
循環而不是foreach
循環。但是,請注意,這種情況下使用foreach
循環會導致編譯錯誤。int[] numbers = { 1, 2, 3, 4, 5 };
for (int i = 0; i< numbers.Length; i++)
{
numbers[i] *= 2;
}
foreach
循環。int[,] matrix = { { 1, 2 }, { 3, 4 }, { 5, 6 } };
foreach (int[] row in matrix)
{
foreach (int element in row)
{
Console.Write(element + " ");
}
Console.WriteLine();
}
總之,在C#中使用foreach
循環遍歷數組是一種簡潔、高效的方法。但是,在需要同時獲取數組元素的索引和值或修改數組元素時,可以考慮使用for
循環。