前往小程序,Get更优阅读体验!
立即前往
首页
学习
活动
专区
工具
TVP
发布
社区首页 >专栏 >java中clone的用法_java clone是浅拷贝吗

java中clone的用法_java clone是浅拷贝吗

作者头像
全栈程序员站长
发布2022-11-04 15:42:04
7310
发布2022-11-04 15:42:04
举报
文章被收录于专栏:全栈程序员必看

一.Cloneable 的用途

Cloneable和Serializable一样都是标记型接口,它们内部都没有方法和属性,implements Cloneable表示该对象能被克隆,能使用Object.clone()方法。如果没有implements Cloneable的类调用Object.clone()方法就会抛出CloneNotSupportedException。

二.克隆的分类

(1)浅克隆(shallow clone),浅拷贝是指拷贝对象时仅仅拷贝对象本身和对象中的基本变量,而不拷贝对象包含的引用指向的对象。 (2)深克隆(deep clone),深拷贝不仅拷贝对象本身,而且拷贝对象包含的引用指向的所有对象。

举例区别一下:对象A1中包含对B1的引用,B1中包含对C1的引用。浅拷贝A1得到A2,A2中依然包含对B1的引用,B1中依然包含对C1的引用。深拷贝则是对浅拷贝的递归,深拷贝A1得到A2,A2中包含对B2(B1的copy)的引用,B2中包含对C2(C1的copy)的引用。

三.克隆的举例

要让一个对象进行克隆,其实就是两个步骤: 1. 让该类实现java.lang.Cloneable接口; 2. 重写(override)Object类的clone()方法。

代码语言:javascript
复制
public class Wife implements Cloneable { 
  
private int id;  
private String name;  
public int getId() {  
return id;  
}  
public void setId(int id) {  
this.id = id;  
}  
public String getName() {  
return name;  
}  
public void setName(String name) {  
this.name = name;  
}  
public Wife(int id,String name) {  
this.id = id;  
this.name = name;  
}  
@Override  
public int hashCode() {
//myeclipse自动生成的 
final int prime = 31;  
int result = 1;  
result = prime * result + id;  
result = prime * result + ((name == null) ? 0 : name.hashCode());  
return result;  
}  
@Override  
public boolean equals(Object obj) {
//myeclipse自动生成的 
if (this == obj)  
return true;  
if (obj == null)  
return false;  
if (getClass() != obj.getClass())  
return false;  
Wife other = (Wife) obj;  
if (id != other.id)  
return false;  
if (name == null) {  
if (other.name != null)  
return false;  
} else if (!name.equals(other.name))  
return false;  
return true;  
}  
@Override  
public Object clone() throws CloneNotSupportedException {  
return super.clone();  
}  
/** * @param args * @throws CloneNotSupportedException */  
public static void main(String[] args) throws CloneNotSupportedException {  
Wife wife = new Wife(1,"wang");  
Wife wife2 = null;  
wife2 = (Wife) wife.clone();  
System.out.println("class same="+(wife.getClass()==wife2.getClass()));//true 
System.out.println("object same="+(wife==wife2));//false 
System.out.println("object equals="+(wife.equals(wife2)));//true 
}  
}  

四.浅克隆的举例

代码语言:javascript
复制
public class Husband implements Cloneable { 
  
private int id;  
private Wife wife;  
public Wife getWife() {  
return wife;  
}  
public void setWife(Wife wife) {  
this.wife = wife;  
}  
public int getId() {  
return id;  
}  
public void setId(int id) {  
this.id = id;  
}  
public Husband(int id) {  
this.id = id;  
}  
@Override  
public int hashCode() {
//myeclipse自动生成的 
final int prime = 31;  
int result = 1;  
result = prime * result + id;  
return result;  
}  
@Override  
protected Object clone() throws CloneNotSupportedException {  
return super.clone();  
}  
@Override  
public boolean equals(Object obj) {
//myeclipse自动生成的 
if (this == obj)  
return true;  
if (obj == null)  
return false;  
if (getClass() != obj.getClass())  
return false;  
Husband other = (Husband) obj;  
if (id != other.id)  
return false;  
return true;  
}  
/** * @param args * @throws CloneNotSupportedException */  
public static void main(String[] args) throws CloneNotSupportedException {  
Wife wife = new Wife(1,"jin");  
Husband husband = new Husband(1);  
Husband husband2 = null;  
husband.setWife(wife);  
husband2 = (Husband) husband.clone();  
System.out.println("husband class same="+(husband.getClass()==husband2.getClass()));//true 
System.out.println("husband object same="+(husband==husband2));//false 
System.out.println("husband object equals="+(husband.equals(husband)));//true 
System.out.println("wife class same="+(husband.getWife().getClass()==husband2.getWife().getClass()));//true 
System.out.println("wife object same="+(husband.getWife()==husband2.getWife()));//true 
System.out.println("wife object equals="+(husband.getWife().equals(husband.getWife())));//true 
}  
}  

五.深克隆的举例

如果要深克隆,需要重写(override)Object类的clone()方法,并且在方法内部调用持有对象的clone()方法;注意如下代码的clone()方法

代码语言:javascript
复制
public class Husband implements Cloneable { 
  
private int id;  
private Wife wife;  
public Wife getWife() {  
return wife;  
}  
public void setWife(Wife wife) {  
this.wife = wife;  
}  
public int getId() {  
return id;  
}  
public void setId(int id) {  
this.id = id;  
}  
public Husband(int id) {  
this.id = id;  
}  
@Override  
public int hashCode() {
//myeclipse自动生成的 
final int prime = 31;  
int result = 1;  
result = prime * result + id;  
return result;  
}  
@Override  
protected Object clone() throws CloneNotSupportedException {  
Husband husband = (Husband) super.clone();  
husband.wife = (Wife) husband.getWife().clone();  
return husband;  
}  
@Override  
public boolean equals(Object obj) {
//myeclipse自动生成的 
if (this == obj)  
return true;  
if (obj == null)  
return false;  
if (getClass() != obj.getClass())  
return false;  
Husband other = (Husband) obj;  
if (id != other.id)  
return false;  
return true;  
}  
/** * @param args * @throws CloneNotSupportedException */  
public static void main(String[] args) throws CloneNotSupportedException {  
Wife wife = new Wife(1,"jin");  
Husband husband = new Husband(1);  
Husband husband2 = null;  
husband.setWife(wife);  
husband2 = (Husband) husband.clone();  
System.out.println("husband class same="+(husband.getClass()==husband2.getClass()));//true 
System.out.println("husband object same="+(husband==husband2));//false 
System.out.println("husband object equals="+(husband.equals(husband)));//true 
System.out.println("wife class same="+(husband.getWife().getClass()==husband2.getWife().getClass()));//true 
System.out.println("wife object same="+(husband.getWife()==husband2.getWife()));//false 
System.out.println("wife object equals="+(husband.getWife().equals(husband.getWife())));//true 
}  
}  

但是也有不足之处,如果Husband内有N个对象属性,突然改变了类的结构,还要重新修改clone()方法。解决办法:可以使用Serializable运用反序列化手段,调用java.io.ObjectInputStream对象的 readObject()方法。

版权声明:本文内容由互联网用户自发贡献,该文观点仅代表作者本人。本站仅提供信息存储空间服务,不拥有所有权,不承担相关法律责任。如发现本站有涉嫌侵权/违法违规的内容, 请发送邮件至 举报,一经查实,本站将立刻删除。

发布者:全栈程序员栈长,转载请注明出处:https://javaforall.cn/182060.html原文链接:https://javaforall.cn

本文参与 腾讯云自媒体同步曝光计划,分享自作者个人站点/博客。
原始发表:2022年10月14日,如有侵权请联系 cloudcommunity@tencent.com 删除

本文分享自 作者个人站点/博客 前往查看

如有侵权,请联系 cloudcommunity@tencent.com 删除。

本文参与 腾讯云自媒体同步曝光计划  ,欢迎热爱写作的你一起参与!

评论
登录后参与评论
0 条评论
热度
最新
推荐阅读
目录
  • 二.克隆的分类
  • 三.克隆的举例
  • 四.浅克隆的举例
  • 五.深克隆的举例
领券
问题归档专栏文章快讯文章归档关键词归档开发者手册归档开发者手册 Section 归档