我們如何在 C# 中使用多維陣列?
C# 允許使用多維陣列。多維陣列也被稱為矩形陣列。宣告一個二維字串陣列如下。
string [,] names;
一個二維陣列可以看作是一個表格,它有 x 行和 y 列。
可以為多維陣列初始化,為每一行指定括號內的值。下面這個陣列有 4 行,每一行有 4 列。
int [,] a = new int [4,4] { {0, 1, 2, 3} , /* initializers for row indexed by 0 */ {4, 5, 6, 7} , /* initializers for row indexed by 1 */ {8, 9, 10, 11} /* initializers for row indexed by 2 */ {12, 13, 14, 15} /* initializers for row indexed by 3 */ };
讓我們看一個例子來學習如何使用 C# 中的多維陣列。
示例
using System; namespace Program { class Demo { static void Main(string[] args) { /* an array with 5 rows and 2 columns*/ int[,] a = new int[5, 2] {{0,0}, {1,2}, {2,4}, {3,6}, {4,8} }; int i, j; /* output each array element's value */ for (i = 0; i < 5; i++) { for (j = 0; j < 2; j++) { Console.WriteLine("a[{0},{1}] = {2}", i, j, a[i,j]); } } Console.ReadKey(); } } }
輸出
a[0,0] = 0 a[0,1] = 0 a[1,0] = 1 a[1,1] = 2 a[2,0] = 2 a[2,1] = 4 a[3,0] = 3 a[3,1] = 6 a[4,0] = 4 a[4,1] = 8
廣告