本文摘自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#如何在pdf文件添加图片印章的详细介绍
C#灵活使用类的方法分享
C#给pdf文件添加水印的代码方法分享
C#开发 winform如何在选项卡中集成加载多个窗体 实现窗体复用详解(图)
C#入门经典学习阶段小结(凌乱)
C#中把image无损转换为icon的实例详解
浅谈C# 之 hashtable 与 dictionary的代码实例
C#中的数据类型是什么?C#中的四种数据类型解释
详细介绍5个最优秀的java和C#代码转换工具(图)
采用 C# 编写的学委助手详解及实例
更多相关阅读请进入《C#》频道 >>
清华大学出版社
作者:[美]克里斯琴·内格尔(Christian Nagel)著。出版时间:2019年3月。
转载请注明出处:木庄网络博客 » 简单介绍C#中List<T>对象的深度拷贝问题