您好,登錄后才能下訂單哦!
淺拷貝和深拷貝主要體現(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é)果如下:
由于源對象和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é)果 :
只有引用類型 public Person partner { set; get; } 指向的是同一塊內(nèi)存空間 . 值類型及String類型都是指向不同的內(nèi)存空間.這才是淺拷貝.
深拷貝 : 就是將引用類型指向不同的內(nèi)存空間,實(shí)現(xiàn)完全的Copy.下節(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)容。