Java中的clone方法-理解浅拷贝和深拷贝
2018-06-18 02:56:55来源:未知 阅读 ()
最近学到Java虚拟机的相关知识,更加能理解clone方法的机制了
java中的我们常常需要复制的类型有三种:
1:8种基本类型,如int,long,float等;
2:复合数据类型(数组);
3:对象变量。
基本数据类型存放在栈中;而对象实例和数组都在堆上分配。
对于基本数据类型我们不需要考虑浅拷贝和深拷贝,使用等号便可复制值。
对于复合数据类型使用等号浅拷贝,仅复制该字段值,如数组则复制地址。。对复合类型使用clone()方法或者System.arrayCopy进行深拷贝(拷贝复合类型对象的时候,会为其重新创建对象)。
int num1=2; int num2=num1; num2=4; System.out.println(num1==num2); int[] a={2,1,4,3,5}; int[] b=a; b[0]=8; System.out.println(a==b); int[] c={2,1,4,3,5}; int[] d=c.clone(); d[0]=8; System.out.println(c==d);
则上述输出为
false
true
false
而对于对象变量,使用clone()仅能实现浅拷贝(仅复制对象的在栈中的reference),下面文章具体对对象变量的两种克隆进行分析。
clone顾名思义就是复制, 在Java语言中, clone方法被对象调用,所以会复制对象。所谓的复制对象,首先要分配一个和源对象同样大小的空间,在这个空间中创建一个新的对象。
复制对象 or 复制引用
在Java中,以下类似的代码非常常见:
Person p = new Person(23, "zhang"); Person p1 = p; System.out.println(p); System.out.println(p1);
com.pansoft.zhangjg.testclone.Person@2f9ee1ac
而下面的代码是真真正正的克隆了一个对象。
Person p = new Person(23, "zhang"); Person p1 = (Person) p.clone(); System.out.println(p); System.out.println(p1);
com.pansoft.zhangjg.testclone.Person@67f1fba0
深拷贝 or 浅拷贝
public class Person implements Cloneable{ private int age ; private String name; public Person(int age, String name) { this.age = age; this.name = name; } public Person() {} public int getAge() { return age; } public String getName() { return name; } @Override protected Object clone() throws CloneNotSupportedException { return (Person)super.clone(); } }
Person p = new Person(23, "zhang"); Person p1 = (Person) p.clone(); String result = p.getName() == p1.getName() ? "clone是浅拷贝的" : "clone是深拷贝的"; System.out.println(result);
clone是浅拷贝的
覆盖Object中的clone方法, 实现深拷贝
1 static class Body implements Cloneable{ 2 public Head head; 3 4 public Body() {} 5 6 public Body(Head head) {this.head = head;} 7 8 @Override 9 protected Object clone() throws CloneNotSupportedException { 10 return super.clone(); 11 } 12 13 } 14 static class Head /*implements Cloneable*/{ 15 public Face face; 16 17 public Head() {} 18 public Head(Face face){this.face = face;} 19 20 } 21 public static void main(String[] args) throws CloneNotSupportedException { 22 23 Body body = new Body(new Head()); 24 25 Body body1 = (Body) body.clone(); 26 27 System.out.println("body == body1 : " + (body == body1) ); 28 29 System.out.println("body.head == body1.head : " + (body.head == body1.head)); 30 31 32 }
body.head == body1.head : true
1 static class Body implements Cloneable{ 2 public Head head; 3 public Body() {} 4 public Body(Head head) {this.head = head;} 5 6 @Override 7 protected Object clone() throws CloneNotSupportedException { 8 Body newBody = (Body) super.clone(); 9 newBody.head = (Head) head.clone(); 10 return newBody; 11 } 12 13 } 14 static class Head implements Cloneable{ 15 public Face face; 16 17 public Head() {} 18 public Head(Face face){this.face = face;} 19 @Override 20 protected Object clone() throws CloneNotSupportedException { 21 return super.clone(); 22 } 23 } 24 public static void main(String[] args) throws CloneNotSupportedException { 25 26 Body body = new Body(new Head()); 27 28 Body body1 = (Body) body.clone(); 29 30 System.out.println("body == body1 : " + (body == body1) ); 31 32 System.out.println("body.head == body1.head : " + (body.head == body1.head)); 33 34 35 }
body.head == body1.head : false
真的是深拷贝吗
1 static class Body implements Cloneable{ 2 public Head head; 3 public Body() {} 4 public Body(Head head) {this.head = head;} 5 6 @Override 7 protected Object clone() throws CloneNotSupportedException { 8 Body newBody = (Body) super.clone(); 9 newBody.head = (Head) head.clone(); 10 return newBody; 11 } 12 13 } 14 15 static class Head implements Cloneable{ 16 public Face face; 17 18 public Head() {} 19 public Head(Face face){this.face = face;} 20 @Override 21 protected Object clone() throws CloneNotSupportedException { 22 return super.clone(); 23 } 24 } 25 26 static class Face{} 27 28 public static void main(String[] args) throws CloneNotSupportedException { 29 30 Body body = new Body(new Head(new Face())); 31 32 Body body1 = (Body) body.clone(); 33 34 System.out.println("body == body1 : " + (body == body1) ); 35 36 System.out.println("body.head == body1.head : " + (body.head == body1.head)); 37 38 System.out.println("body.head.face == body1.head.face : " + (body.head.face == body1.head.face)); 39 40 41 }
body.head == body1.head : false
body.head.face == body1.head.face : true
如何进行彻底的深拷贝
1 static class Head implements Cloneable{ 2 public Face face; 3 4 public Head() {} 5 public Head(Face face){this.face = face;} 6 @Override 7 protected Object clone() throws CloneNotSupportedException { 8 //return super.clone(); 9 Head newHead = (Head) super.clone(); 10 newHead.face = (Face) this.face.clone(); 11 return newHead; 12 } 13 } 14 15 static class Face implements Cloneable{ 16 @Override 17 protected Object clone() throws CloneNotSupportedException { 18 return super.clone(); 19 } 20 }
写在最后
标签:
版权申明:本站文章部分自网络,如有侵权,请联系:west999com@outlook.com
特别注意:本站所有转载文章言论不代表本站观点,本站所提供的摄影照片,插画,设计作品,如需使用,请与原作者联系,版权归原作者所有
- 国外程序员整理的Java资源大全(全部是干货) 2020-06-12
- 2020年深圳中国平安各部门Java中级面试真题合集(附答案) 2020-06-11
- 2020年java就业前景 2020-06-11
- 04.Java基础语法 2020-06-11
- Java--反射(框架设计的灵魂)案例 2020-06-11
IDC资讯: 主机资讯 注册资讯 托管资讯 vps资讯 网站建设
网站运营: 建站经验 策划盈利 搜索优化 网站推广 免费资源
网络编程: Asp.Net编程 Asp编程 Php编程 Xml编程 Access Mssql Mysql 其它
服务器技术: Web服务器 Ftp服务器 Mail服务器 Dns服务器 安全防护
软件技巧: 其它软件 Word Excel Powerpoint Ghost Vista QQ空间 QQ FlashGet 迅雷
网页制作: FrontPages Dreamweaver Javascript css photoshop fireworks Flash