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種方法來複制。spa
方法一:使用for循環code
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()blog
int []pins = {9,3,7,2} int []copy3 = new int[pins.length]; Array.Copy(pins,copy3,copy.Length);
方法四:使用Array類中的一個實例方法Clone(),能夠一次調用,最方便,可是Clone()方法返回的是一個對象,因此要強制轉換成恰當的類類型。string
int []pins = {9,3,7,2} int []copy4 = (int [])pins.Clone();
方法五:for循環
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數組,這個例子能夠靈活變通,不少地方能夠用。class