C#交錯數組
交錯數組是數組的數組。可以聲明整型值的鋸齒數組scores:
int [][] scores;
聲明數組,不創建在存儲器的數組。創建上述數組:
int[][] scores = new int[5][]; for (int i = 0; i < scores.Length; i++) { scores[i] = new int[4]; }
您可以初始化一個鋸齒數組為:
int[][] scores = new int[2][]{new int[]{92,93,94},new int[]{85,66,87,88}};
其中,scores是一個整數兩個數組的數組- scores[0]是3的整數和數組scores[1]是4個整數數組。
例子
下麵的例子說明了使用交錯數組:
using System; namespace ArrayApplication { class MyArray { static void Main(string[] args) { /* a jagged array of 5 array of integers*/ int[][] a = new int[][]{new int[]{0,0},new int[]{1,2}, new int[]{2,4},new int[]{ 3, 6 }, new int[]{ 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