当前位置: 首页 > news >正文

宣传片拍摄技巧/如何优化网络连接

宣传片拍摄技巧,如何优化网络连接,怎么进入外网,怎么让WORDPRESS首页显示菜单浅谈C#中List对象的深度拷贝问题发布时间:2020-08-25 02:44:58来源:脚本之家阅读:157作者:jingxian一、List对象中的T是值类型的情况(int 类型等)对于值类型的List直接用以下方法就可以复制:List oldList new List();…

浅谈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对象的深度拷贝问题就是小编分享给大家的全部内容了,希望能给大家一个参考,也希望大家多多支持亿速云。

http://www.lbrq.cn/news/1377145.html

相关文章:

  • 做网站怎么兼职/竞价推广账户托管费用
  • 做网站的公司没有技术/百度指数查询工具
  • 网站管理系统哪个好/杭州seo网站优化
  • 网站运行费用/seo优化有哪些
  • 济南建设网站 概况/seo课堂
  • 营销型网站优化/程序员培训机构哪家好
  • 广西新增疫情最新消息今天封城了/china东莞seo
  • 手机网站制作公司/优质网站
  • 襄樊网站开发/怎么做推广让别人主动加我
  • 定做网站多少钱/环球资源外贸平台免费
  • 专做宝宝的用品网站/seo综合查询软件排名
  • dede 网站图标/长春网站seo哪家好
  • 老公做赌博网站推广/推广平台的方式有哪些
  • 网站建设专业/福州seo公司排名
  • 设计公司加盟/seo查询站长工具
  • 新疆好地方app谁开发的/太原seo快速排名怎么样
  • 做网站获取手机号码/谷歌优化培训
  • 上海高端网站制作公司/百度云搜索引擎入口盘多多
  • 万网网站空间服务范围及费用/推广普通话手抄报文字内容
  • 信息类网站有哪些/seo优化顾问
  • c2c网站开设店铺/免费发布信息的平台
  • 网站建设合同违约/快速排名方案
  • 高端企业网站建设公司/网站开发需要哪些技术
  • 宜昌外贸网站建设优化推广/搜索引擎技术基础
  • WordPress 4.9添加备案号/安徽网站seo公司
  • 网站建设div设置圆角/北京seo网络优化师
  • 网站空间面板/永久免费不收费的污染app
  • 可以看的网站都有哪些/长沙网站关键词排名
  • 手机网站自动适应/哪家建设公司网站
  • 网站建设(中企动力)/平谷头条新闻
  • 通俗易懂解释Java8 HashMap
  • 断路器瞬时跳闸曲线数据获取方式
  • WAIC引爆AI,智元机器人收购上纬新材,Geek+上市,157起融资撑起热度|2025年7月人工智能投融资观察 · 极新月报
  • 轻量级鼠标右键增强工具 MousePlus
  • 公网服务器上Nginx或者Openresty如何屏蔽IP直接扫描
  • 计数组合学7.10(舒尔函数的组合定义)