c#中数组赋值⽅法
C#中数组复制有多种⽅法
typeof array数组间的复制,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数组,这个例⼦可以灵活变通,很多地⽅可以⽤
版权声明:本站内容均来自互联网,仅供演示用,请勿用于商业和其他非法用途。如果侵犯了您的权益请与我们联系QQ:729038198,我们将在24小时内删除。
发表评论