本文章主要是讲解C# 语言编程中,深度复制和浅度复制,下面我将通过一个实例进行讲解。在实例开发之前,我们得先知道深度复制是什么和浅度复制是什么,它们之间的区别又是什么,下面将为大家一一揭晓。
1.深度复制是什么?
深度复制就是引用类型的复制。
2.浅度复制是什么?
浅度复制是值类型的复制。
以下是C#中深度复制和浅度复制的实例代码引用片段:
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
|
using System;
using System.Collections.Generic;
using System.Text;
namespace Test
{
public class Content
{
public int val;
}
//此处若是深度复制才继承ICloneable接口
//public class Cloner : ICloneable
public class Cloner
{
public Content MyContent = new Content();
public Cloner( int newVal)
{
MyContent.val = newVal;
}
//浅度复制
//使用System.Object.MemberwiseClone()进行浅度复制,使用getCopy方法.
public object getCopy()
{
return MemberwiseClone();
}
//深度复制:
public object clone()
{
Cloner clonedCloner = new Cloner(MyContent.val); //此处是实例化一个对象
return clonedCloner;
}
}
}
//主函数
using System;
using System.Collections.Generic;
using System.Text;
namespace Test
{
class Program
{
static void Main( string [] args)
{
Cloner mySource = new Cloner(5);
Cloner myTarget = (Cloner)mySource.getCopy(); //深度为cloner
Console.WriteLine( "MyTarget.Mycontent.Val={}" ,myTarget.MyContent.val);
mySource.MyContent.val = 2;
Console.WriteLine( "MyTarget.Mycontent.Val={}" , myTarget.MyContent.val);
}
}
}
|
通过简单的实例开发,大家对深度复制和浅度复制是不是有了大概的了解了,以后再有相关的内容介绍会在和大家分享哦