浅谈C#中List<T>对象的深度拷贝问题

浅谈C#中List<T>对象的深度拷贝问题,第1张

概述一、List<T>对象中的T是值类型的情况(int类型等)对于值类型的List直接用以下方法就可以复制:

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

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

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

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

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

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、另一种用序列化的方式对引用对象完成深拷贝,此种方法最可靠

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来实现序列化与反序列化

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);      }}

三、对上述几种对象深拷贝进行测试

测试如下:

using System;using System.Collections.Generic;using System.Collections ;using System.linq;using System.Text;using System.IO;using System.Runtime.Serialization;using System.Runtime.Serialization.Formatters.Binary;namespace liNQ{  [Serializable]  public class tt  {    private string name = "";    public string name    {      get { return name; }      set { name = value; }    }    private string sex = "";    public string Sex    {      get { return sex; }      set { sex = value; }    }  }  class liNQTest  {    public static T Clone<T>(T RealObject)     {       using (Stream objectStream = new MemoryStream())       {         IFormatter formatter = new BinaryFormatter();         formatter.Serialize(objectStream,RealObject);         objectStream.Seek(0,SeekOrigin.Begin);         return (T)formatter.Deserialize(objectStream);       }     }    public static voID Main()    {      List<tt> lsttt = new List<tt>();      tt tt1 = new tt();      tt1.name = "a1";      tt1.Sex = "20";      lsttt.Add(tt1);      List<tt> l333 = new List<tt>();      l333.Add(Clone<tt>(lsttt[0]));      l333[0].name = "333333333";   } }}

以上这篇浅谈C#中List对象的深度拷贝问题就是小编分享给大家的全部内容了,希望能给大家一个参考,也希望大家多多支持编程小技巧。

总结

以上是内存溢出为你收集整理的浅谈C#中List<T>对象的深度拷贝问题全部内容,希望文章能够帮你解决浅谈C#中List<T>对象的深度拷贝问题所遇到的程序开发问题。

如果觉得内存溢出网站内容还不错,欢迎将内存溢出网站推荐给程序员好友。

欢迎分享,转载请注明来源:内存溢出

原文地址: https://outofmemory.cn/langs/1245517.html

(0)
打赏 微信扫一扫 微信扫一扫 支付宝扫一扫 支付宝扫一扫
上一篇 2022-06-07
下一篇 2022-06-07

发表评论

登录后才能评论

评论列表(0条)

保存