如何C#數組初始化詳解

來源:互聯網
上載者:User
如何初始化數組呢?這裡向你詳細介紹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#數組初始化有所協助。



相關文章

聯繫我們

該頁面正文內容均來源於網絡整理,並不代表阿里雲官方的觀點,該頁面所提到的產品和服務也與阿里云無關,如果該頁面內容對您造成了困擾,歡迎寫郵件給我們,收到郵件我們將在5個工作日內處理。

如果您發現本社區中有涉嫌抄襲的內容,歡迎發送郵件至: info-contact@alibabacloud.com 進行舉報並提供相關證據,工作人員會在 5 個工作天內聯絡您,一經查實,本站將立刻刪除涉嫌侵權內容。

A Free Trial That Lets You Build Big!

Start building with 50+ products and up to 12 months usage for Elastic Compute Service

  • Sales Support

    1 on 1 presale consultation

  • After-Sales Support

    24/7 Technical Support 6 Free Tickets per Quarter Faster Response

  • Alibaba Cloud offers highly flexible support services tailored to meet your exact needs.