如何初始化數組呢?這裡向你詳細介紹C#數組初始化的具體的步驟和執行個體示範,希望對你瞭解和學習如何初始化數組有所協助,那麼讓我們開始吧:
C#通過將初始值括在大括弧 ({}) 內為在聲明時初始化數組提供了簡單而直接了當的方法。特別要注意的是,如果聲明時未初始化數組,則數群組成員自動初始化為該數群組類型的預設初始值。
下面的樣本展示初始化不同類型的數組的各種方法。
C#數組初始化之一維數組
int[] numbers = new int[5] {1, 2, 3, 4, 5}; string[] names = new string[3] {"Matt", "Joanne", "Robert"};
可省略數組的大小,如下所示:
int[] numbers = new int[] {1, 2, 3, 4, 5}; string[] names = new string[] {"Matt", "Joanne", "Robert"};
如果提供了初始值設定項,還可省略 new 語句,如下所示:
int[] numbers = {1, 2, 3, 4, 5}; string[] names = {"Matt", "Joanne", "Robert"};
C#數組初始化之多維陣列
int[,] numbers = new int[3, 2] { {1, 2}, {3, 4}, {5, 6} }; string[,] siblings = new string[2, 2] { {"Mike","Amy"}, {"Mary","Albert"} };
可省略數組的大小,如下所示:
int[,] numbers = new int[,] { {1, 2}, {3, 4}, {5, 6} }; string[,] siblings = new string[,] { {"Mike","Amy"}, {"Mary","Ray"} };
如果提供了初始值設定項,還可省略 new 語句,如下所示:
int[,] numbers = { {1, 2}, {3, 4}, {5, 6} }; string[,] siblings = { {"Mike", "Amy"}, {"Mary", "Albert"} };
C#數組初始化之交錯的數組(數組的數組)
可以像下例所示那樣初始化交錯的數組:
int[][] numbers = new int[2][] { new int[] {2,3,4}, new int[] {5,6,7,8,9} };
可省略第一個數組的大小,如下所示:
int[][] numbers = new int[][] { new int[] {2,3,4}, new int[] {5,6,7,8,9} };
或使用
int[][] numbers = { new int[] {2,3,4}, new int[] {5,6,7,8,9} };
注意,對於交錯數組的元素沒有初始化文法。
C#數組初始化的相關內容就向你介紹到這裡,希望對你瞭解和學習C#數組初始化有所協助。