android list深度复制,浅谈C#中List<T>对象的深度拷贝问题

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

发布时间:2020-08-25 02:44:58

来源:脚本之家

阅读:157

作者:jingxian

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

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

List oldList = new List();

oldList.Add(..);

List newList = new List(oldList);

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

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

static class Extensions

{

public static IList Clone(this IList listToClone) where T: ICloneable

{

return listToClone.Select(item => (T)item.Clone()).ToList();

}

//当然前题是List中的对象要实现ICloneable接口

}

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

public static T Clone(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 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 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 lsttt = new List();

tt tt1 = new tt();

tt1.Name = "a1";

tt1.Sex = "20";

lsttt.Add(tt1);

List l333 = new List();

l333.Add(Clone(lsttt[0]));

l333[0].Name = "333333333";

}

}

}

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

  • 0
    点赞
  • 0
    收藏
    觉得还不错? 一键收藏
  • 0
    评论

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

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

请填写红包祝福语或标题

红包个数最小为10个

红包金额最低5元

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

抵扣说明:

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

余额充值