c# 數組

來源:互聯網
上載者:User

標籤:strong   line   nbsp   img   ima   數組   []   value   tar   

什麼是數組?

數組是一種資料結構,包含同一種資料類型的多個元素。

2 數組的聲明?

int [] Num;  註:聲明數組時,方括弧 ([]) 必須跟在類型後面,而不是變數名後面。在 C# 中,將方括弧放在變數名後是不合法的文法

數組的初始化:

我們知道數組是參考型別,所以需要給他分配堆上的記憶體。
1.myIntArray = new int[3];
2.myIntArray = new int[] { 1, 2, 3 };
3.int[] myIntArray = { 1, 2, 3 };  //當使用這種方法對數組進行初始化時,只能在聲明變數數組時使用,不能在聲明數組之後使用。

數組的訪問:

數組在聲明和初始化後,可以使用索引器進行訪問,索引器總是以0開頭,表示第一個元素。

            int[] myIntArray = { 1, 2, 3 };            Console.WriteLine("intValue = {0}", myIntArray[0]);            Console.Read();

結果為:intValue = 1
數組的類型:
1.多維陣列:
一般的數組(也稱一維數組)用一個整數來索引,多維陣列用兩個或多個整數來索引。

 static void Main(string[] args)        {            //聲明一個二維數組  兩行三列            int[,] myIntArray1;            myIntArray1 = new int[2, 3];            myIntArray1[0, 0] = 1;            myIntArray1[0, 1] = 11;            myIntArray1[0, 2] = 111;            myIntArray1[1, 0] = 2;            myIntArray1[1, 1] = 22;            myIntArray1[1, 2] = 222;            Console.WriteLine("{0},{1},{2}", myIntArray1[0, 0], myIntArray1[0, 1], myIntArray1[0, 2]);            Console.WriteLine("{0},{1},{2}", myIntArray1[1, 0], myIntArray1[1, 1], myIntArray1[1, 2]);            Console.Read();        }

結果為:

 static void Main(string[] args)        {            //聲明一個二維數組  三行三列            int[,] myIntArray2;            myIntArray2 = new int[,] { { 1, 11, 111 }, { 2, 22, 222 }, { 3, 33, 333 }, { 4, 44, 444 } };            Console.WriteLine("{0},{1},{2}", myIntArray2[0, 0], myIntArray2[0, 1], myIntArray2[0, 2]);            Console.WriteLine("{0},{1},{2}", myIntArray2[1, 0], myIntArray2[1, 1], myIntArray2[1, 2]);            Console.WriteLine("{0},{1},{2}", myIntArray2[2, 0], myIntArray2[2, 1], myIntArray2[2, 2]);            Console.WriteLine("{0},{1},{2}", myIntArray2[3, 0], myIntArray2[3, 1], myIntArray2[3, 2]);            Console.Read();        }

結果為:

static void Main(string[] args)        {            //聲明一個三維數組  三行三列            int[, ,] myIntArray3;            myIntArray3 = new int[,,] { { {1,1}, {11,11}, {111,111} },                                         { {2,2}, {22,22}, {222,222} },                                         { {3,3}, {33,33}, {333,333} },                                         { {4,4}, {44,44}, {444,444} }                                       };            Console.WriteLine("{0},{1},{2},{3},{4},{5}", myIntArray3[0, 0, 0], myIntArray3[0, 0, 1], myIntArray3[0, 1, 0], myIntArray3[0, 1, 1], 
myIntArray3[0, 2, 0], myIntArray3[0, 2, 1]); Console.WriteLine("{0},{1},{2},{3},{4},{5}", myIntArray3[1, 0, 0], myIntArray3[1, 0, 1], myIntArray3[1, 1, 0], myIntArray3[1, 1, 1], myIntArray3[1, 2, 0], myIntArray3[1, 2, 1]); Console.WriteLine("{0},{1},{2},{3},{4},{5}", myIntArray3[2, 0, 0], myIntArray3[2, 0, 1], myIntArray3[2, 1, 0], myIntArray3[2, 1, 1], myIntArray3[2, 2, 0], myIntArray3[2, 2, 1]); Console.WriteLine("{0},{1},{2},{3},{4},{5}", myIntArray3[3, 0, 0], myIntArray3[3, 0, 1], myIntArray3[3, 1, 0], myIntArray3[3, 1, 1], myIntArray3[3, 2, 0], myIntArray3[3, 2, 1]); Console.Read(); }

結果為:

2.鋸齒數組:
一般多維陣列的大小是矩形的,而鋸齒數組的大小比較靈活,每一行都可以有不同的大小。


在初始化鋸齒數組時,先設定該數組包含的行數。定義各行中元素個數的第二個括弧設定為空白,因為這類數組的每一行包含不同的元素數。

static void Main(string[] args)        {            //聲明一個鋸齒數組  三行            int[][] myIntArray4;            myIntArray4 = new int[3][];            myIntArray4[0] = new int[] { 1,11,111};            myIntArray4[1] = new int[2] { 2, 22 };            myIntArray4[2] = new int[] { 3,33,333,3333};            for (int i = 0; i < myIntArray4.Length; i++)            {                for (int j = 0; j < myIntArray4[i].Length; j++)                {                    Console.WriteLine("{0}",myIntArray4[i][j]);                }            }            Console.Read();        }

結果為:




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.