zoukankan      html  css  js  c++  java
  • C#数组复制(合并)方法

    C#数组复制方法有哪些呢?在实际开发的过程中,我们需要掌握学习的有哪些呢?这里向你介绍5种方法,那么具体的实施方法是什么呢?让我们看看具体的内容。

    数组间的复制,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#语言中应该有如下5种C#数组复制方法来复制。

    C#数组复制方法一:使用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];  

     

    C#数组复制方法二:使用数组对象中的CopyTo()方法

    int []pins = {9,3,7,2}; 
    int []copy2 = new int[pins.length];  
    pins.CopyTo(copy2,
    0); 

    C#数组复制方法三:使用Array类的一个静态方法Copy()

    int []pins = {9,3,7,2} ; 
    int []copy3 = new int[pins.length];  
    Array.Copy(pins,copy3,copy.Length); 

     

    C#数组复制方法四:使用Array类中的一个实例方法Clone()

    可以一次调用,最方便,但是Clone()方法返回的是一个对象,所以要强制转换成恰当的类类型。

    int []pins = {9,3,7,2};
    int []copy4 = (int [])pins.Clone(); 

    C#数组复制方法五:

    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数组,这个例子可以灵活变通,很多地方可以用。

    C#数组复制方法的基本内容就向你介绍到这里,希望对你了解和学习C#数组复制方法有所帮助。

  • 相关阅读:
    C#使用二叉树算法设计一个无限分级的树表
    程序员写博客这件小事
    jqgrid定义多选操作
    jqgrid如何在一个页面点击按钮后,传递参数到新页面
    MVC 移除复数表名的契约
    [技术分享] .NET下 , 上传图片的处理方式 , 贴上代码 .
    Web应用程序项目以配置使用IIS。未找到Web服务器
    MVC5关联表读取相关表数据
    【转】C# Linq 交集、并集、差集、去重
    .NET MVC3中扩展一个HtmlHelper方法CheckBoxList
  • 原文地址:https://www.cnblogs.com/ccsbb/p/2047807.html
Copyright © 2011-2022 走看看