C#实例复制和深度复制

深度复制与浅表复制的区别在于,浅表复制只复制值类型的值,而对于实例所包含的对象依然指向原有实例。

[csharp]  view plain  copy
  1. class Program  
  2.    {  
  3.        [Serializable]  
  4.        public class Car   
  5.        {  
  6.            public string name;  
  7.            public Car(string name)  
  8.            {  
  9.                this.name = name;  
  10.            }  
  11.        }  
  12.        [Serializable]  
  13.        public class Person:ICloneable  
  14.        {  
  15.            public int id;  
  16.            public string name;  
  17.            public Car car;  
  18.            public Person()  
  19.            {  
  20.            }  
  21.            public Person(int id, string name, Car car)  
  22.            {  
  23.                this.id = id;  
  24.                this.name = name;  
  25.                this.car = car;  
  26.            }  
  27.   
  28.            public Object Clone()  //实现ICloneable接口,达到浅表复制。浅表复制与深度复制无直接有关系。 对外提供一个创建自身的浅表副本的能力  
  29.            {  
  30.                return this.MemberwiseClone();  
  31.            }  
  32.   
  33.        }  
  34.   
  35.        //要复制的实例必须可序列化,包括实例引用的其它实例都必须在类定义时加[Serializable]特性。  
  36.        public static T Copy<T>(T RealObject)  
  37.        {  
  38.            using (Stream objectStream = new MemoryStream())  
  39.            {  
  40.                //利用 System.Runtime.Serialization序列化与反序列化完成引用对象的复制     
  41.                IFormatter formatter = new BinaryFormatter();  
  42.                formatter.Serialize(objectStream, RealObject);  
  43.                objectStream.Seek(0, SeekOrigin.Begin);  
  44.                return (T)formatter.Deserialize(objectStream);  
  45.            }  
  46.        }     
  47.   
  48.        
  49.        static void Main(string[] args)  
  50.        {  
  51.            Person p1 = new Person(1, "Scott"new Car("宝马"));  
  52.            Console.WriteLine("原始值:P1:id={0}----------->name={1}------>car={2}", p1.id, p1.name, p1.car.name);  
  53.            Person p2 = Copy<Person>(p1); //克隆一个对象  
  54.            Person p3 = p1.Clone() as Person;//浅表复制  
  55.            Console.WriteLine("改变P1的值");  
  56.            p1.id = 2;  
  57.            p1.name = "Lacy";  
  58.            p1.car.name = "红旗";  
  59.            Console.WriteLine("P1:id={0}----------->name={1}------>car={2}", p1.id, p1.name, p1.car.name);  
  60.            Console.WriteLine("深度复制:P2:id={0}----------->name={1}------>car={2}", p2.id, p2.name, p2.car.name);  
  61.            Console.WriteLine("浅表复制:P3:id={0}----------->name={1}------>car={2}", p3.id, p3.name, p3.car.name);  
  62.            Console.ReadKey();  
  63.   
  64.        }  


运行结果:

一、List<T>对象中的T是值类型的情况(int 类型等)

对于值类型的List直接用以下方法就可以复制:

[csharp]  view plain  copy
  1. List<T> oldList = new List<T>();   
  2. oldList.Add(..);   
  3. List<T> newList = new List<T>(oldList);   


 

二、List<T>对象中的T是引用类型的情况(例如自定义的实体类)

1、对于引用类型的List无法用以上方法进行复制,只会复制List中对象的引用,可以用以下扩展方法复制:

[csharp]  view plain  copy
  1. static class Extensions   
  2.  {   
  3.          public static IList<T> Clone<T>(this IList<T> listToClone) where T: ICloneable   
  4.          {   
  5.                  return listToClone.Select(item => (T)item.Clone()).ToList();   
  6.          }   
  7.  //<SPAN style="COLOR: #000000">当然前题是List中的对象要实现ICloneable接口</SPAN>  
  8.  }   

2、另一种用序列化的方式对引用对象完成深拷贝,此种方法最可靠

[csharp]  view plain  copy
  1. public static T Clone<T>(T RealObject)   
  2.   
  3. {   
  4.      using (Stream objectStream = new MemoryStream())   
  5.      {   
  6.             //利用 System.Runtime.Serialization序列化与反序列化完成引用对象的复制  
  7.              IFormatter formatter = new BinaryFormatter();   
  8.              formatter.Serialize(objectStream, RealObject);   
  9.              objectStream.Seek(0, SeekOrigin.Begin);   
  10.              return (T)formatter.Deserialize(objectStream);   
  11.      }   
  12. }   


 

3、利用System.Xml.Serialization来实现序列化与反序列化

[csharp]  view plain  copy
  1. public static T Clone<T>(T RealObject)   
  2. {    
  3.             using(Stream stream=new MemoryStream())  
  4.             {  
  5.                 XmlSerializer serializer = new XmlSerializer(typeof(T));  
  6.                 serializer.Serialize(stream, RealObject);  
  7.                 stream.Seek(0, SeekOrigin.Begin);  
  8.                 return (T)serializer.Deserialize(stream);  
  9.             }  
  10. }  
  • 0
    点赞
  • 2
    收藏
    觉得还不错? 一键收藏
  • 0
    评论

“相关推荐”对你有帮助么?

  • 非常没帮助
  • 没帮助
  • 一般
  • 有帮助
  • 非常有帮助
提交
评论
添加红包

请填写红包祝福语或标题

红包个数最小为10个

红包金额最低5元

当前余额3.43前往充值 >
需支付:10.00
成就一亿技术人!
领取后你会自动成为博主和红包主的粉丝 规则
hope_wisdom
发出的红包
实付
使用余额支付
点击重新获取
扫码支付
钱包余额 0

抵扣说明:

1.余额是钱包充值的虚拟货币,按照1:1的比例进行支付金额的抵扣。
2.余额无法直接购买下载,可以购买VIP、付费专栏及课程。

余额充值