C#中List對象的深度拷貝問題 (Clone)

一、List<T>對象中的T是值類型的情況(int 類型等)

對於值類型的List直接用以下方法就可以複製:

  1. List<T> oldList =new List<T>();  
  2. oldList.Add(..);  
  3. List<T> newList =new List<T>(oldList);  
List<T> oldList = new List<T>(); 
oldList.Add(..); 
List<T> newList = new List<T>(oldList); 

 

二、List<T>對象中的T是引用類型的情況(例如自定義的實體類)

1、對於引用類型的List無法用以上方法進行復制,只會複製List中對象的引用,可以用以下擴展方法複製:

  1. staticclass Extensions  
  2. {  
  3.         publicstatic 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: rgb(0, 0, 0);">當然前題是List中的對象要實現ICloneable接口</span> 
  8. }  
static class Extensions 
 { 
         public static IList<T> Clone<T>(this IList<T> listToClone) where T: ICloneable 
         { 
                 return listToClone.Select(item => (T)item.Clone()).ToList(); 
         } 
 //當然前題是List中的對象要實現ICloneable接口
 } 

2、另一種用序列化的方式對引用對象完成深拷貝,此種方法最可靠

  1. publicstatic 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. }  
public static T Clone<T>(T RealObject) 

{ 
     using (Stream objectStream = new MemoryStream()) 
     { 
            //利用 System.Runtime.Serialization序列化與反序列化完成引用對象的複製
             IFormatter formatter = new BinaryFormatter(); 
             formatter.Serialize(objectStream, RealObject); 
             objectStream.Seek(0, SeekOrigin.Begin); 
             return (T)formatter.Deserialize(objectStream); 
     } 
} 

3、利用System.Xml.Serialization來實現序列化與反序列化

  1. publicstatic 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.             } 
public static T Clone<T>(T RealObject) 
{  
            using(Stream stream=new MemoryStream())
            {
                XmlSerializer serializer = new XmlSerializer(typeof(T));
                serializer.Serialize(stream, RealObject);
                stream.Seek(0, SeekOrigin.Begin);
                return (T)serializer.Deserialize(stream);
            }
}
三、對上述幾種對象深拷貝進行測試

 

  1. 測試如下: 
  2. using System; 
  3. using System.Collections.Generic; 
  4. using System.Collections ; 
  5. using System.Linq; 
  6. using System.Text; 
  7. using System.IO; 
  8. using System.Runtime.Serialization; 
  9. using System.Runtime.Serialization.Formatters.Binary; 
  10.  
  11. namespace LINQ 
  12.     [Serializable] 
  13.     public class tt 
  14.     { 
  15.         private string name = ""
  16.  
  17.         public string Name 
  18.         { 
  19.            get {return name; } 
  20.            set { name = value; } 
  21.         } 
  22.        privatestring sex =""
  23.  
  24.        publicstring Sex 
  25.         { 
  26.            get {return sex; } 
  27.            set { sex = value; } 
  28.         } 
  29.     } 
  30.  
  31.     class LINQTest 
  32.     { 
  33.         public static T Clone<T>(T RealObject)  
  34.         {  
  35.            using (Stream objectStream =new MemoryStream())  
  36.             {  
  37.                 IFormatter formatter =new BinaryFormatter();  
  38.                 formatter.Serialize(objectStream, RealObject);  
  39.                 objectStream.Seek(0, SeekOrigin.Begin);  
  40.                return (T)formatter.Deserialize(objectStream);  
  41.             }  
  42.         } 
  43.  
  44.  
  45.         public static void Main() 
  46.         { 
  47.             List<tt> lsttt =new List<tt>(); 
  48.             tt tt1 =new tt(); 
  49.             tt1.Name ="a1"
  50.             tt1.Sex ="20"
  51.             lsttt.Add(tt1); 
  52.             List<tt> str=new List<tt>(); 
  53.             str.Add(Clone<tt>(lsttt[0])); 
  54.             str[0].Name ="lv"
  55.       } 
  56.   } 
發表評論
所有評論
還沒有人評論,想成為第一個評論的人麼? 請在上方評論欄輸入並且點擊發布.
相關文章