- 1、本文档共9页,可阅读全部内容。
- 2、有哪些信誉好的足球投注网站(book118)网站文档一经付费(服务费),不意味着购买了该文档的版权,仅供个人/单位学习、研究之用,不得用于商业用途,未经授权,严禁复制、发行、汇编、翻译或者网络传播等,侵权必究。
- 3、本站所有内容均由合作方或网友上传,本站不对文档的完整性、权威性及其观点立场正确性做任何保证或承诺!文档内容仅供研究参考,付费前请自行鉴别。如您付费,意味着您自己接受本站规则且自行承担风险,本站不退款、不进行额外附加服务;查看《如何避免下载的几个坑》。如果您已付费下载过本站文档,您可以点击 这里二次下载。
- 4、如文档侵犯商业秘密、侵犯著作权、侵犯人身权等,请点击“版权申诉”(推荐),也可以打举报电话:400-050-0827(电话支持时间:9:00-18:30)。
查看更多
NET的深复制方法(以C#语言为例)
深复制需要将对象实例中字段引用的对象也进行复制,在平时的编程工作中经常要用到这种复制方式,下面以c#为例来演示一下方法。
很多时候我们复制一个对象实例A到实例B,在用实例B去做其他事情的时候,会对实例B进行修改,为保证对B的修改不会影响到A的正常使用,就需要使用到深复制。
我在网上搜到一些深复制的方法,同时写了几组例子对这些方法进行测试。
我的操作系统版本为Win7旗舰版,.NET Framework版本是4.5
测试程序
我建了一个C#窗体应用程序(Winform),其主窗口FormMain的Load函数内容如下:
private void FormMain_Load(object sender, EventArgs e){ //测试1:深度复制 自定义类 try { Console.WriteLine(=== 深度复制 自定义类 ===); TestClass test1 = new TestClass(); test1.a = 10; test1.b = hello world!; test1.c = new string[] { x, y, z }; TestClass test2 = new TestClass(); test2.a = 11; test2.b = hello world2!; test2.c = new string[] { i, j, k }; test1.d = test2; Console.WriteLine(---test1_start---); Console.WriteLine(test1); Console.WriteLine(---test1_end---); TestClass test3 = (TestClass)DataManHelper.DeepCopyObject(test1); Console.WriteLine(---test3_start---); Console.WriteLine(test3); Console.WriteLine(---test3_end---); } catch (Exception ex) { Console.WriteLine(ex.ToString()); }
//测试2:深度复制 可序列化的自定义类
try{ Console.WriteLine(=== 深度复制 可序列化的自定义类 ===); TestClassWithS test1 = new TestClassWithS(); test1.a = 10; test1.b = hello world!; test1.c = new string[] { x, y, z }; TestClassWithS test2 = new TestClassWithS(); test2.a = 11; test2.b = hello world2!; test2.c = new string[] { i, j, k }; test1.d = test2; Console.WriteLine(---test1_start---); Console.WriteLine(test1); Console.WriteLine(---test1_end---); TestClassWithS test3 = (TestClassWithS)DataManHelper.DeepCopyObject(test1); Console.WriteLine(---test3_start---); Console.WriteLine(test3); Console.WriteLine(---test3_end---);}catch (Exception ex){ Console.WriteLine(ex.ToString());}
//测试3:深度复制 DataTable
try{ Console.WriteLine(=== 深度复制 DataTable ===); DataTable dtKirov = new DataTable(TestTable); dtKirov.Columns.Add(Col1); dtKirov.Columns.Add(Col2); dtKirov.Columns.Add(Col3); dtKirov.Rows.Add(1-1, 1-2, 1-3); dtKirov.Rows.Add(2-1, 2-2, 2-3); dtKirov.Rows.Add(3-1, 3-2, 3-3); Console.WriteLine(=== 复制前 ===); for (int i = 0; i
文档评论(0)