c#中數組賦值方法

來源:互聯網
上載者:User
C#中數組複製有多種方法

數組間的複製,int[] pins = {9,3,4,9};int [] alias = pins;這裡出了錯誤,也是錯誤的根源,以上代碼並沒有出錯,但是根本不是複製,因為pins和alias都是引用,存在於堆棧中,而資料9,3,4,3是一個int對象存在於堆中,int [] alias = pins;只不過是建立另一個引用,alias和pins同時指向{9,3,4,3},當修改其中一個引用的時候,勢必影響另一個。複製的意思是建立一個和被複製對象一樣的對象,在C#語言中應該有如下4種方法來複製。

方法一:使用for迴圈

int []pins = {9,3,7,2}

int []copy = new int[pins.length];

for(int i =0;i!=copy.length;i++)

{

copy[i] = pins[i];

}

方法二:使用數組對象中的CopyTo()方法

int []pins = {9,3,7,2}

int []copy2 = new int[pins.length];

pins.CopyTo(copy2,0);

方法三:使用Array類的一個靜態方法Copy()

int []pins = {9,3,7,2}

int []copy3 = new int[pins.length];

Array.Copy(pins,copy3,copy.Length);

方法四:使用Array類中的一個執行個體方法Clone(),可以一次調用,最方便,但是Clone()方法返回的是一個對象,所以要強制轉換成恰當的類類型。

int []pins = {9,3,7,2}

int []copy4 = (int [])pins.Clone();

方法五:

string[] student1 = { "$", "$", "c", "m", "d", "1", "2", "3", "1", "2", "3" };

string[] student2 = { "0", "1", "2", "3", "4", "5", "6", "6", "1", "8", "16","10","45", "37", "82" };

ArrayList student = new ArrayList();

foreach (string s1 in student1)

{

student.Add(s1);

}

foreach (string s2 in student2)

{

student.Add(s2);

}

string[] copyAfter = (string[])student.ToArray(typeof(string));

兩個數組合并,最後把合并後的結果賦給copyAfter數組,這個例子可以靈活變通,很多地方可以用


相關文章

聯繫我們

該頁面正文內容均來源於網絡整理,並不代表阿里雲官方的觀點,該頁面所提到的產品和服務也與阿里云無關,如果該頁面內容對您造成了困擾,歡迎寫郵件給我們,收到郵件我們將在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.