本文摘自PHP中文网,作者黄舟,侵删。
下面小编就为大家带来一篇浅谈C#中List<T>对象的深度拷贝问题。小编觉得挺不错的,现在就分享给大家,也给大家做个参考。一起跟随小编过来看看吧一、List<T>对象中的T是值类型的情况(int 类型等)
对于值类型的List直接用以下方法就可以复制:
1 2 3 | List<T> oldList = new List<T>();
oldList.Add(..);
List<T> newList = new List<T>(oldList);
|
二、List<T>对象中的T是引用类型的情况(例如自定义的实体类)
1、对于引用类型的List无法用以上方法进行复制,只会复制List中对象的引用,可以用以下扩展方法复制:
1 2 3 4 5 6 7 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();
}
}
|
2、另一种用序列化的方式对引用对象完成深拷贝,此种方法最可靠
1 2 3 4 5 6 7 8 9 10 11 12 | 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);
}
}
|
3、利用System.Xml.Serialization来实现序列化与反序列化
1 2 3 4 5 6 7 8 9 10 | 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);
}
}
|
三、对上述几种对象深拷贝进行测试
阅读剩余部分
相关阅读 >>
C#中值类型和引用类型简单概述
C#接口的实例详解
如何在C#中使用bogus去创建模拟数据
详细介绍用C#描述数据结构3:arraylist的图文代码
C#开发实例-订制屏幕截图工具(十)在截图中包含鼠标指针形状
C#中tostring数据类型格式大全(千分符)总结
C#高级编程(二)-核心C#的详解
C#使用反射来实现对象的深度复制的示例代码分享
用C#实现一个简单的http服务器
C#开发实例-订制屏幕截图工具(七)添加放大镜功能的代码示例
更多相关阅读请进入《C#》频道 >>
清华大学出版社
作者:[美]克里斯琴·内格尔(Christian Nagel)著。出版时间:2019年3月。
转载请注明出处:木庄网络博客 » 简单介绍C#中List<T>对象的深度拷贝问题