溫馨提示×

溫馨提示×

您好,登錄后才能下訂單哦!

密碼登錄×
登錄注冊×
其他方式登錄
點(diǎn)擊 登錄注冊 即表示同意《億速云用戶服務(wù)條款》

C# 淺拷貝

發(fā)布時間:2020-07-13 09:00:02 來源:網(wǎng)絡(luò) 閱讀:752 作者:Aonaufly 欄目:編程語言

淺拷貝和深拷貝主要體現(xiàn)在引用成員上.先上例子:

using System;
using System.Collections.Generic;
using System.Linq;
using System.Text;

namespace CopyDemo
{
    /// <summary>
    /// 人類
    /// </summary>
    public sealed class Person
    {
        public string Name { set; get; }
        public uint age { set; get; }
        public Person partner { set; get; }
    }
}

對Person執(zhí)行淺拷貝:

using System;
using System.Collections.Generic;
using System.Linq;
using System.Text;

namespace CopyDemo
{
    class Program
    {
        static void Main(string[] args)
        {
            Person i = new Person();
            i.Name = "Aonaufly";
            i.age = 27;
            i.partner = new Person() { Name = "Kayer", age = 18 };
            Person i_1 = i;
            Console.WriteLine("我的name : {0} , copy的name : {1}", i.Name, i_1.Name);
            Console.WriteLine("我的Partner的Name : {0} , copy的Partner的age : {1}", i.partner.Name, i_1.partner.Name);
            Console.WriteLine("==========================================================");
            i_1.partner.Name = "Ainy";
            i_1.Name = "CC";
            Console.WriteLine("我的name : {0} , copy的name : {1}", i.Name, i_1.Name);
            Console.WriteLine("我的Partner的Name : {0} , copy的Partner的age : {1}", i.partner.Name, i_1.partner.Name);
            Console.ReadLine();
        }
    }
}

結(jié)果如下:

C# 淺拷貝

由于源對象和Copy對象的都指向同一塊內(nèi)存,互相直接的Update都會對另一個產(chǎn)生作用.

實(shí)際上 , 上述方案是不可取的.2對象都指向都一個地址,這不純粹的浪費(fèi)空間嗎 ? 重點(diǎn) : MemberwiseClone是C#用于實(shí)現(xiàn)淺拷貝的方案.

使用方法 :

①:繼承 ICloneable

②:實(shí)現(xiàn)ICloneable的Clone方法

using System;
using System.Collections.Generic;
using System.Linq;
using System.Text;

namespace CopyDemo
{
    /// <summary>
    /// 人類
    /// </summary>
    public sealed class Person : ICloneable
    {
        public string Name { set; get; }
        public uint age { set; get; }
        public Person partner { set; get; }
        //實(shí)現(xiàn)ICloneable接口
        public object Clone()
        {
            return this.MemberwiseClone();
        }
    }
}

調(diào)用:

using System;
using System.Collections.Generic;
using System.Linq;
using System.Text;

namespace CopyDemo
{
    class Program
    {
        static void Main(string[] args)
        {
            Person i = new Person();
            i.Name = "Aonaufly";
            i.age = 27;
            i.partner = new Person() { Name = "Kayer", age = 18 };
            Person i_1 = (Person)i.Clone();
            Console.WriteLine("我的name : {0} , copy的name : {1}", i.Name, i_1.Name);
            Console.WriteLine("我的Partner的Name : {0} , copy的Partner的age : {1}", i.partner.Name, i_1.partner.Name);
            Console.WriteLine("==========================================================");
            i_1.partner.Name = "Ainy";
            i_1.Name = "CC";
            i_1.age = 1;
            Console.WriteLine("我的name : {0} , copy的name : {1}", i.Name, i_1.Name);
            Console.WriteLine("我的Partner的Name : {0} , copy的Partner的age : {1}", i.partner.Name, i_1.partner.Name);
            Console.ReadLine();
        }
    }
}

結(jié)果 :

C# 淺拷貝

只有引用類型  public Person partner { set; get; } 指向的是同一塊內(nèi)存空間 . 值類型及String類型都是指向不同的內(nèi)存空間.這才是淺拷貝.

深拷貝 :  就是將引用類型指向不同的內(nèi)存空間,實(shí)現(xiàn)完全的Copy.下節(jié)解析............

向AI問一下細(xì)節(jié)

免責(zé)聲明:本站發(fā)布的內(nèi)容(圖片、視頻和文字)以原創(chuàng)、轉(zhuǎn)載和分享為主,文章觀點(diǎn)不代表本網(wǎng)站立場,如果涉及侵權(quán)請聯(lián)系站長郵箱:is@yisu.com進(jìn)行舉報(bào),并提供相關(guān)證據(jù),一經(jīng)查實(shí),將立刻刪除涉嫌侵權(quán)內(nèi)容。

AI