码迷,mamicode.com
首页 > 其他好文 > 详细

由浅拷贝讨论到深拷贝再讨论到接口(一):浅拷贝和深拷贝

时间:2015-06-30 20:13:05      阅读:191      评论:0      收藏:0      [点我收藏+]

标签:

 接口ICloneable为我们实现了拷贝的梦想。

 

(一)如何实现浅拷贝?

 新建学校对象(School),实现接口ICloneable,如果我们这样写,即完成了浅拷贝:return base.MemberwiseClone();  

    public class School : ICloneable
{
public object
Clone()
{
return base
.MemberwiseClone();
}
}

完整代码:

技术分享代码
1 using System;
2
3  namespace NY
4 {
5 class Program
6 {
7 staticvoid Main(string[] args)
8 {
9 School a =new School();
10 a.Id =1;
11 a.Name ="A school";
12 a.Student.Name ="Li lei";
13
14 Console.WriteLine("-----------a对象原始值-----------");
15 Console.WriteLine("a.Id:"+ a.Id);
16 Console.WriteLine("a.Name:"+ a.Name);
17 Console.WriteLine("a.Student.Name:"+ a.Student.Name);
18
19 School b = (School)a.Clone();
20
21 Console.WriteLine("-----------a对象当前值-----------");
22 Console.WriteLine("a.Id:"+ a.Id);
23 Console.WriteLine("a.Name:"+ a.Name);
24 Console.WriteLine("a.Student.Name:"+ a.Student.Name);
25 Console.WriteLine("-----------b对象当前值-----------");
26 Console.WriteLine("b.Id:"+ b.Id);
27 Console.WriteLine("b.Name:"+ b.Name);
28 Console.WriteLine("b.Student.Name:"+ b.Student.Name);
29 }
30 }
31
32 publicclass School : ICloneable
33 {
34 privateint _id =0;
35 privatestring _name =string.Empty;
36 private Student _student =new Student();
37
38 publicint Id
39 {
40 get { return _id; }
41 set { _id = value; }
42 }
43 publicstring Name
44 {
45 get { return _name; }
46 set { _name = value; }
47 }
48 public Student Student
49 {
50 get { return _student; }
51 set { _student = value; }
52 }
53
54 publicobject Clone()
55 {
56 returnbase.MemberwiseClone();
57 }
58 }
59
60 publicclass Student : ICloneable
61 {
62 privatestring _name =string.Empty;
63
64 publicstring Name
65 {
66 get { return _name; }
67 set { _name = value; }
68 }
69
70 publicobject Clone()
71 {
72 returnbase.MemberwiseClone();
73 }
74 }
75 }
76  

结果如下:

 技术分享

结论:

  (1)  我们只用了一句话,即轻松地将a对象的值拷贝给了b对象:School b = (School)a.Clone();

 

 (二)值类型--浅拷贝会创建副本

对于值类型int,我们把b对象Id的值修改为2(20行),看看会有什么结果

技术分享代码
1 using System;
2
3  namespace NY
4 {
5 class Program
6 {
7 staticvoid Main(string[] args)
8 {
9 School a =new School();
10 a.Id =1;
11 a.Name ="A school";
12 a.Student.Name ="Li lei";
13
14 Console.WriteLine("-----------a对象原始值-----------");
15 Console.WriteLine("a.Id:"+ a.Id);
16 Console.WriteLine("a.Name:"+ a.Name);
17 Console.WriteLine("a.Student.Name:"+ a.Student.Name);
18
19 School b = (School)a.Clone();
20 b.Id =2;
21
22 Console.WriteLine("-----------a对象当前值-----------");
23 Console.WriteLine("a.Id:"+ a.Id);
24 Console.WriteLine("a.Name:"+ a.Name);
25 Console.WriteLine("a.Student.Name:"+ a.Student.Name);
26 Console.WriteLine("-----------b对象当前值-----------");
27 Console.WriteLine("b.Id:"+ b.Id);
28 Console.WriteLine("b.Name:"+ b.Name);
29 Console.WriteLine("b.Student.Name:"+ b.Student.Name);
30 }
31 }
32
33 publicclass School : ICloneable
34 {
35 privateint _id =0;
36 privatestring _name =string.Empty;
37 private Student _student =new Student();
38
39 publicint Id
40 {
41 get { return _id; }
42 set { _id = value; }
43 }
44 publicstring Name
45 {
46 get { return _name; }
47 set { _name = value; }
48 }
49 public Student Student
50 {
51 get { return _student; }
52 set { _student = value; }
53 }
54
55 publicobject Clone()
56 {
57 returnbase.MemberwiseClone();
58 }
59 }
60
61 publicclass Student : ICloneable
62 {
63 privatestring _name =string.Empty;
64
65 publicstring Name
66 {
67 get { return _name; }
68 set { _name = value; }
69 }
70
71 publicobject Clone()
72 {
73 returnbase.MemberwiseClone();
74 }
75 }
76 }
77  

结果如下:

 技术分享

结论:

  (1)  a对象Id的值仍然为1,b对象Id的值却为2,说明对于值类型来说,浅拷贝会创建副本。

 

 (三)引用类型string--浅拷贝会创建副本

对于引用类型string,我们把b对象Name的值修改为b school(21行),看看会有什么结果

技术分享代码
1 using System;
2
3  namespace NY
4 {
5 class Program
6 {
7 staticvoid Main(string[] args)
8 {
9 School a =new School();
10 a.Id =1;
11 a.Name ="A school";
12 a.Student.Name ="Li lei";
13
14 Console.WriteLine("-----------a对象原始值-----------");
15 Console.WriteLine("a.Id:"+ a.Id);
16 Console.WriteLine("a.Name:"+ a.Name);
17 Console.WriteLine("a.Student.Name:"+ a.Student.Name);
18
19 School b = (School)a.Clone();
20 b.Id =2;
21 b.Name ="B school";
22
23 Console.WriteLine("-----------a对象当前值-----------");
24 Console.WriteLine("a.Id:"+ a.Id);
25 Console.WriteLine("a.Name:"+ a.Name);
26 Console.WriteLine("a.Student.Name:"+ a.Student.Name);
27 Console.WriteLine("-----------b对象当前值-----------");
28 Console.WriteLine("b.Id:"+ b.Id);
29 Console.WriteLine("b.Name:"+ b.Name);
30 Console.WriteLine("b.Student.Name:"+ b.Student.Name);
31 }
32 }
33
34 publicclass School : ICloneable
35 {
36 privateint _id =0;
37 privatestring _name =string.Empty;
38 private Student _student =new Student();
39
40 publicint Id
41 {
42 get { return _id; }
43 set { _id = value; }
44 }
45 publicstring Name
46 {
47 get { return _name; }
48 set { _name = value; }
49 }
50 public Student Student
51 {
52 get { return _student; }
53 set { _student = value; }
54 }
55
56 publicobject Clone()
57 {
58 returnbase.MemberwiseClone();
59 }
60 }
61
62 publicclass Student : ICloneable
63 {
64 privatestring _name =string.Empty;
65
66 publicstring Name
67 {
68 get { return _name; }
69 set { _name = value; }
70 }
71
72 publicobject Clone()
73 {
74 returnbase.MemberwiseClone();
75 }
76 }
77 }
78  

结果如下: 

技术分享

结论:

  (1)  a对象Name的值仍然为a school,b对象Name的值却为b school,说明对于引用类型string来说,浅拷贝会创建副本。

 

(四)思考:如果把小写string改成大写String呢?
这里直接给出结论:

  (1)  对于大写String来说,浅拷贝会创建副本。

  (2)  由于在工作中常会用的是小写string,较少用大写String,所以,关于两者差异,请见笔者另一篇文章《浅析string与String》

 

五)其他引用类型--浅拷贝不会创建副本

对于其他new出来的引用类型,我们把b对象的Student的Name的值修改为Han meimei(22行),看看会有什么结果

技术分享代码
1 using System;
2
3  namespace NY
4 {
5 class Program
6 {
7 staticvoid Main(string[] args)
8 {
9 School a =new School();
10 a.Id =1;
11 a.Name ="A school";
12 a.Student.Name ="Li lei";
13
14 Console.WriteLine("-----------a对象原始值-----------");
15 Console.WriteLine("a.Id:"+ a.Id);
16 Console.WriteLine("a.Name:"+ a.Name);
17 Console.WriteLine("a.Student.Name:"+ a.Student.Name);
18
19 School b = (School)a.Clone();
20 b.Id =2;
21 b.Name ="B school";
22 b.Student.Name ="Han meimei";
23
24 Console.WriteLine("-----------a对象当前值-----------");
25 Console.WriteLine("a.Id:"+ a.Id);
26 Console.WriteLine("a.Name:"+ a.Name);
27 Console.WriteLine("a.Student.Name:"+ a.Student.Name);
28 Console.WriteLine("-----------b对象当前值-----------");
29 Console.WriteLine("b.Id:"+ b.Id);
30 Console.WriteLine("b.Name:"+ b.Name);
31 Console.WriteLine("b.Student.Name:"+ b.Student.Name);
32 }
33 }
34
35 publicclass School : ICloneable
36 {
37 privateint _id =0;
38 privatestring _name =string.Empty;
39 private Student _student =new Student();
40
41 publicint Id
42 {
43 get { return _id; }
44 set { _id = value; }
45 }
46 publicstring Name
47 {
48 get { return _name; }
49 set { _name = value; }
50 }
51 public Student Student
52 {
53 get { return _student; }
54 set { _student = value; }
55 }
56
57 publicobject Clone()
58 {
59 returnbase.MemberwiseClone();
60 }
61 }
62
63 publicclass Student : ICloneable
64 {
65 privatestring _name =string.Empty;
66
67 publicstring Name
68 {
69 get { return _name; }
70 set { _name = value; }
71 }
72
73 publicobject Clone()
74 {
75 returnbase.MemberwiseClone();
76 }
77 }
78 }
79  

结果如下:

 技术分享

结论:

  (1)  大家注意看,a.Studnet.Name也被改成Han meimei了,说明,对于引用类型,浅拷贝不会创建副本。

 

六)思考:我们修改b对象的时候,不希望把a对象的值也给改了

上例的结论,也许并不是我们期望的,我们期望当b.Student.Name改成Han meimei的时候,不要改变a.Student.Name的值,因此,我们引入深拷贝的概念。

 

(七)如何实现深拷贝

既然ICloneable接口已经提供了Clone方法,那么,我们只需要重写这个方法,即可实现深拷贝。

publicclass School : ICloneable
{
publicobject Clone()
{
School cloned
=new School();
cloned.Id
=this._id;
cloned.Name
=this._name;
cloned.Student
= (Student)this._student.Clone();
return cloned;
}
}

完整代码:

技术分享代码
1 using System;
2
3  namespace NY
4 {
5 class Program
6 {
7 staticvoid Main(string[] args)
8 {
9 School a =new School();
10 a.Id =1;
11 a.Name ="A school";
12 a.Student.Name ="Li lei";
13
14 Console.WriteLine("-----------a对象原始值-----------");
15 Console.WriteLine("a.Id:"+ a.Id);
16 Console.WriteLine("a.Name:"+ a.Name);
17 Console.WriteLine("a.Student.Name:"+ a.Student.Name);
18
19 School b = (School)a.Clone();
20 b.Id =2;
21 b.Name ="B school";
22 b.Student.Name ="Han meimei";
23
24 Console.WriteLine("-----------a对象当前值-----------");
25 Console.WriteLine("a.Id:"+ a.Id);
26 Console.WriteLine("a.Name:"+ a.Name);
27 Console.WriteLine("a.Student.Name:"+ a.Student.Name);
28 Console.WriteLine("-----------b对象当前值-----------");
29 Console.WriteLine("b.Id:"+ b.Id);
30 Console.WriteLine("b.Name:"+ b.Name);
31 Console.WriteLine("b.Student.Name:"+ b.Student.Name);
32 }
33 }
34
35 publicclass School : ICloneable
36 {
37 privateint _id =0;
38 privatestring _name =string.Empty;
39 private Student _student =new Student();
40
41 publicint Id
42 {
43 get { return _id; }
44 set { _id = value; }
45 }
46 publicstring Name
47 {
48 get { return _name; }
49 set { _name = value; }
50 }
51 public Student Student
52 {
53 get { return _student; }
54 set { _student = value; }
55 }
56
57 publicobject Clone()
58 {
59 School cloned =new School();
60 cloned.Id =this._id;
61 cloned.Name =this._name;
62 cloned.Student = (Student)this._student.Clone();
63 return cloned;
64 }
65 }
66
67 publicclass Student : ICloneable
68 {
69 privatestring _name =string.Empty;
70
71 publicstring Name
72 {
73 get { return _name; }
74 set { _name = value; }
75 }
76
77 publicobject Clone()
78 {
79 Student cloned =new Student();
80 cloned.Name =this._name;
81 cloned.Age =this._age;
82 return cloned;
83 }
84 }
85 }
86  

 

结果如下:

技术分享

结论:

  (1)  深拷贝为我们实现了对象的完整复制,彻底解决了浅拷贝对于引用类型只拷贝地址带来的问题。

 

八)或许有人就要问了

常常听博客园高手说针对接口编程,但,到我自己使用的时候,想不到要用接口。比如这个例子,不设计接口,我也能实现深拷贝,比如在Framework层新写个方法MyClone(),然后这样调用School b = (School)MyClone(a);。那为什么还要去设计接口呢?给谁用呢?怎么用呢?为什么比不设计接口要好呢?

下篇博文,会有精彩解答,敬请期待!

由浅拷贝讨论到深拷贝再讨论到接口(一):浅拷贝和深拷贝

标签:

原文地址:http://www.cnblogs.com/qixuejia/p/4611160.html

(0)
(0)
   
举报
评论 一句话评论(0
登录后才能评论!
© 2014 mamicode.com 版权所有  联系我们:gaon5@hotmail.com
迷上了代码!