java与模式孙悟空_悟空模式-java-原型模式

本文介绍了Java中的原型模式,通过孙悟空与金箍棒的故事,阐述了如何利用原型模式进行对象复制。讲解了clone()方法、深复制与浅复制的概念,并通过代码示例展示了如何实现深复制,包括使用clone()方法和Java对象序列化。最后,讨论了序列化实现深复制的简单性和适用场景。
摘要由CSDN通过智能技术生成

【却说那妖精与大圣斗经半日,不分胜败。行者把棒丢起,叫一声“变!”就以一变十,以十变百,以百变千,半天里,好似蛇游蟒搅,乱打妖邪。妖邪慌了手脚,将身一闪,化道清风,即奔碧空之上逃走。行者念声咒语,将铁棒收做一根,纵祥光一直赶来。】

在西游记第九十五回【假合真形擒玉兔 真阴归正会灵元】中,孙行者“殴打”玉兔精的时候,将如意金箍棒从一根化作了千百根,打得玉兔精无从招架。

这千百根金箍棒的属性应该是一样的,如果孙悟空每次都要新建一个新的金箍棒对象,然后把原有的金箍棒的属性复制过去,如此重复千百次,未免太过麻烦,所以我们这里假设孙悟空使用了原型模式来创建多个相同属性的金箍棒实例。

在详细介绍原型模式之前,我们需要先了解一下java.lang.Object#clone()方法以及java.lang.Cloneable接口的功能及实现:

java.lang.Cloneable

/*** A class implements the Cloneable interface to

* indicate to the {@linkjava.lang.Object#clone()} method that it

* is legal for that method to make a

* field-for-field copy of instances of that class.

*

* Invoking Object's clone method on an instance that does not implement the

* Cloneable interface results in the exception

* CloneNotSupportedException being thrown.

*

* By convention, classes that implement this interface should override

* Object.clone (which is protected) with a public method.

* See {@linkjava.lang.Object#clone()} for details on overriding this

* method.

*

* Note that this interface does not contain the clone method.

* Therefore, it is not possible to clone an object merely by virtue of the

* fact that it implements this interface. Even if the clone method is invoked

* reflectively, there is no guarantee that it will succeed.

*

*@authorunascribed

*@seejava.lang.CloneNotSupportedException

*@seejava.lang.Object#clone()

*@sinceJDK1.0*/

public interfaceCloneable {

}

Java doc的意思大致是说:一个类实现了Cloneable接口,就是在运行时向虚拟机表明当前类可以合法地使用Object类的clone()方法,来进行对象内容的拷贝。假设没有实现Cloneable接口就调用clone()方法的话,虽然能够通过编译,但是会在运行时抛出java.lang.CloneNotSupportedException。一般来说,实现Cloneable接口的类需要重写Object类的protected方法,并且声明重写方法为public的。需要注意的是,Cloneable接口并不包含clone()方法。因此,一个类仅仅实现Cloneable接口就想成功实现clone()功能是不可能的。即使反射调用也不保证会成功。

也就是说,要想调用源生的Object类的clone()方法,我们必须让原型类实现Cloneable接口。那么,Object类的clone()的优势在哪里呢?

/*** Creates and returns a copy of this object. The precise meaning

* of "copy" may depend on the class of the object. The general

* intent is that, for any object {@codex}, the expression:

*

*

 
  

* x.clone() != x

* will be true, and that the expression:

*

*

 
  

* x.clone().getClass() == x.getClass()

* will be {@codetrue}, but these are not absolute requirements.

* While it is typically the case that:

*

*

 
  

* x.clone().equals(x)

* will be {@codetrue}, this is not an absolute requirement.

*

* By convention, the returned object should be obtained by calling

* {@codesuper.clone}. If a class and all of its superclasses (except

* {@codeObject}) obey this convention, it will be the case that

* {@codex.clone().getClass() == x.getClass()}.

*

* By convention, the object returned by this method should be independent

* of this object (which is being cloned). To achieve this independence,

* it may be necessary to modify one or more fields of the object returned

* by {@codesuper.clone} before returning it. Typically, this means

* copying any mutable objects that comprise the internal "deep structure"

* of the object being cloned and replacing the references to these

* objects with references to the copies. If a class contains only

* primitive fields or references to immutable objects, then it is usually

* the case that no fields in the object returned by {@codesuper.clone}

* need to be modified.

*

* The method {@codeclone} for class {@codeObject} performs a

* specific cloning operation. First, if the class of this object does

* not implement the interface {@codeCloneable}, then a

* {@codeCloneNotSupportedException} is thrown. Note that all arrays

* are considered to implement the interface {@codeCloneable} and that

* the return type of the {@codeclone} method of an array type {@codeT[]}

* is {@codeT[]} where T is any reference or primitive type.

* Otherwise, this method creates a new instance of the class of this

* object and initializes all its fields with exactly the contents of

* the corresponding fields of this object, as if by assignment; the

* contents of the fields are not themselves cloned. Thus, this method

* performs a "shallow copy" of this object, not a "deep copy" operation.

*

* The class {@codeObject} does not itself implement the interface

* {@codeCloneable}, so calling the {@codeclone} method on an object

* whose class is {@codeObject} will result in throwing an

* exception at run time.

*

*@returna clone of this instance.

*@throwsCloneNotSupportedException if the object's class does not

* support the {@codeCloneable} interface. Subclasses

* that override the {@codeclone} method can also

* throw this exception to indicate that an instance cannot

* be cloned.

*@seejava.lang.Cloneable*/

protected native Object clone() throws CloneNotSupportedException;

我们看到clone()方法是一个native方法,native方法的效率一般远高于非native方法。同时我们也可以看到关于clone()方法的描述也印证了Cloneable接口的相关介绍,如protected以及CloneNotSupportedException等。

关于clone()方法的表现如下:

x.clone() !=x;

x.clone().getClass() == x.getClass();

x.clone().equals(x) == true;

这里还要介绍关于深复制与浅复制的概念:

浅复制对象的所有属性都与原对象具有相同的值,包括引用其他对象的变量,对这些对象的引用依然指向原来的对象。

而深复制对象会将原对象的所有属性都复制一遍,包括原对象引用的对象,深复制会复制新的引用对象作为自己的变量而不使用原来的对象。

浅复制原型模式

packagecom.tirion.design.prototype;public class GoldenCudgel implementsCloneable {publicGoldenCudgel() {

}public GoldenCudgel(booleandisappear) {this.disappear =disappear;

}private booleandisappear;public booleanisDisappear() {returndisappear;

}public void setDisappear(booleandisappear) {this.disappear =disappear;

}publicGoldenCudgel clone() {

GoldenCudgel goldenCudgel= null;try{

goldenCudgel= (GoldenCudgel) super.clone();

}catch(CloneNotSupportedException e) {

e.printStackTrace();

}returngoldenCudgel;

}public booleanequals(GoldenCudgel obj) {return obj.isDisappear() ==disappear;

}

}

悟空

packagecom.tirion.design.prototype;public classWuKong {private static GoldenCudgel goldenCudgel = new GoldenCudgel(false);public static voidmain(String[] args) {

GoldenCudgel copyGoldenCudgel=goldenCudgel.clone();

System.out.println(goldenCudgel);

System.out.println(copyGoldenCudgel);

System.out.println(goldenCudgel!=copyGoldenCudgel);

System.out.println(goldenCudgel.getClass()==copyGoldenCudgel.getClass());

System.out.println(goldenCudgel.equals(copyGoldenCudgel));

}

}

打印结果

com.tirion.design.prototype.GoldenCudgel@74a14482

com.tirion.design.prototype.GoldenCudgel@1540e19d

true

true

true

在金箍棒GoldenCudgel中,我们不仅提供了clone()方法的实现,还重写了queals()方法用于检验复制结果。

我们可以看到,孙悟空在创建新的金箍棒对象时,调用自身持有的金箍棒的clone()方法,就得到了一个新的金箍棒对象,它的属性值disappear(是否消失)的值在复制后保持不变(如果金箍棒有其他更多属性,也会保持不变,这里我们不过多赘述)。

如果孙悟空要复制一千根金箍棒,那么他就调用一千次自身持有的金箍棒的clone()方法即可。

通过原型模式,我们可以通过调用原型复制方法,不需要手动设置属性,就可以达到产生与原对象相同属性的对象的目的,大大简化了我们创建原型对象的工作量。

值得注意的是,原型模式是一种对象的创建模式,它并没有要求必须要通过Cloneable接口来完成,当你为一个类提供一个复制自身的方法,所有要创建相同属性的该类对象的使用者,都通过该方法来创建新对象,那么也是使用了原型模式,只是没有实现Cloneable方便安全而已。

深复制原型模式

我们都知道,孙悟空除了著名的筋斗云、火眼金睛和七十二变之外,还有很多其他的法术,比如身外身法术,就是产生一个自身的复制,下面我们来看孙悟空的深复制与浅复制的区别。

新的悟空对象,提供了浅复制与深复制两个复制方法

packagecom.tirion.design.prototype;public class WuKong implementsCloneable {privateGoldenCudgel goldenCudgel;publicGoldenCudgel getGoldenCudgel() {returngoldenCudgel;

}public voidsetGoldenCudgel(GoldenCudgel goldenCudgel) {this.goldenCudgel =goldenCudgel;

}publicWuKong() {

goldenCudgel= new GoldenCudgel(false);

}publicWuKong clone() {

WuKong wuKong= null;try{

wuKong= (WuKong) super.clone();

}catch(CloneNotSupportedException e) {

e.printStackTrace();

}returnwuKong;

}publicWuKong deepClone() {

WuKong wuKong= null;try{

wuKong= (WuKong) super.clone();

wuKong.setGoldenCudgel(wuKong.getGoldenCudgel().clone());

}catch(CloneNotSupportedException e) {

e.printStackTrace();

}returnwuKong;

}public static voidmain(String[] args) {

WuKong wuKong= newWuKong();

WuKong wuKongCopy=wuKong.clone();

System.out.println("浅复制后悟空是否为同一个对象" + (wuKong ==wuKongCopy));

System.out.println("浅复制后金箍棒是否为同一个对象" + (wuKong.getGoldenCudgel() ==wuKongCopy.getGoldenCudgel()));

System.out.println("浅复制原对象金箍棒属性为" +wuKong.getGoldenCudgel().isDisappear());

System.out.println("浅复制对象金箍棒属性发生改变...");

wuKongCopy.getGoldenCudgel().setDisappear(true);

System.out.println("浅复制原对象金箍棒属性为" +wuKong.getGoldenCudgel().isDisappear());

System.out.println("状态重置...");

wuKong.getGoldenCudgel().setDisappear(false);

WuKong wuKongDeepCopy=wuKong.deepClone();

System.out.println("深复制后悟空是否为同一个对象" + (wuKong ==wuKongDeepCopy));

System.out.println("深复制后金箍棒是否为同一个对象" + (wuKong.getGoldenCudgel() ==wuKongDeepCopy.getGoldenCudgel()));

System.out.println("深复制原对象金箍棒属性为" +wuKong.getGoldenCudgel().isDisappear());

System.out.println("深复制对象金箍棒属性发生改变...");

wuKongDeepCopy.getGoldenCudgel().setDisappear(true);

System.out.println("深复制原对象金箍棒属性为" +wuKong.getGoldenCudgel().isDisappear());

}

}

执行结果:

浅复制后悟空是否为同一个对象false

浅复制后金箍棒是否为同一个对象true

浅复制原对象金箍棒属性为false

浅复制对象金箍棒属性发生改变...

浅复制原对象金箍棒属性为true

状态重置...

深复制后悟空是否为同一个对象false

深复制后金箍棒是否为同一个对象false

深复制原对象金箍棒属性为false

深复制对象金箍棒属性发生改变...

深复制原对象金箍棒属性为false

从执行结果中我们看到,浅复制后虽然悟空的复制对象与原对象不是同一个对象,但是两个悟空持有的金箍棒是同一个对象,当复制对象的金箍棒消失时,原悟空对象的金箍棒也相应消失了,这显然与我们的认知不符合,这时候,就需要深复制。

在深复制中,我们将需要深复制的属性也实现了Cloneable接口,在这里就是金箍棒类,在深复制deepClone方法中,我们不仅仅将悟空对象克隆了,同时也将需要深复制的对象克隆了一份,这样,深复制后,两个悟空持有的金箍棒就不是同一个了,复制对象的金箍棒消失,并不影响原悟空对象的金箍棒。

这里也存在一个问题,就是当对象的属性非常复杂的时候,我们的各个属性都要去实现Cloneable接口,且deepClone()方法会相当复杂。

下面我们看一下有没有更加简单的深复制方式

Java对象序列化可以将对象转化为一个字节序列,并能够通过反序列化将字节序列恢复为原来的对象,我们可以利用这一功能来实现轻量级的深复制,但前提是需要复制对象实现Serializable接口。

序列化深复制原型模式

悟空

packagecom.tirion.design.prototype;importjava.io.ByteArrayInputStream;importjava.io.ByteArrayOutputStream;importjava.io.ObjectInputStream;importjava.io.ObjectOutputStream;importjava.io.Serializable;public class WuKong implementsSerializable {privateGoldenCudgel goldenCudgel;publicGoldenCudgel getGoldenCudgel() {returngoldenCudgel;

}public voidsetGoldenCudgel(GoldenCudgel goldenCudgel) {this.goldenCudgel =goldenCudgel;

}publicWuKong() {

goldenCudgel= new GoldenCudgel(false);

}public WuKong deepClone() throwsException {

ByteArrayOutputStream baos= newByteArrayOutputStream();

ObjectOutputStream oos= newObjectOutputStream(baos);

oos.writeObject(this);

ByteArrayInputStream bais= newByteArrayInputStream(baos.toByteArray());

ObjectInputStream ois= newObjectInputStream(bais);return(WuKong) ois.readObject();

}public static void main(String[] args) throwsException {

WuKong wuKong= newWuKong();

WuKong wuKongDeepCopy=wuKong.deepClone();

System.out.println("深复制后悟空是否为同一个对象" + (wuKong ==wuKongDeepCopy));

System.out.println("深复制后金箍棒是否为同一个对象" + (wuKong.getGoldenCudgel() ==wuKongDeepCopy.getGoldenCudgel()));

System.out.println("深复制原对象金箍棒属性为" +wuKong.getGoldenCudgel().isDisappear());

System.out.println("深复制对象金箍棒属性发生改变...");

wuKongDeepCopy.getGoldenCudgel().setDisappear(true);

System.out.println("深复制原对象金箍棒属性为" +wuKong.getGoldenCudgel().isDisappear());

}

}

这时候运行main()方法会报java.io.NotSerializableException,因为序列化对象要求引用对象也必须实现Serializable接口,除非对应属性不需要序列化,所以我们这里需要将金箍棒类也实现序列化接口。

金箍棒

packagecom.tirion.design.prototype;importjava.io.Serializable;public class GoldenCudgel implementsSerializable {publicGoldenCudgel() {

}public GoldenCudgel(booleandisappear) {this.disappear =disappear;

}private booleandisappear;public booleanisDisappear() {returndisappear;

}public void setDisappear(booleandisappear) {this.disappear =disappear;

}public booleanequals(GoldenCudgel obj) {return obj.isDisappear() ==disappear;

}

}

执行结果

深复制后悟空是否为同一个对象false

深复制后金箍棒是否为同一个对象false

深复制原对象金箍棒属性为false

深复制对象金箍棒属性发生改变...

深复制原对象金箍棒属性为false

从结果来看,通过序列化实现深复制与通过clone()方法实现深复制的结果是一样的,但是方法却比较简单,我们只需要将需要复制的对象实现序列化接口就可以了。同时java的对象序列化是提供了轻量级持久化的,我们可以通过网络或者磁盘来进行数据的传播及持久化,并且就突破了clone()方法只能本地程序运行期间才能持久化的限制。

关于原型模式的介绍就到这里,你可以将它记忆为身外身模式。

如果你认为文章中哪里有错误或者不足的地方,欢迎在评论区指出,也希望这篇文章对你学习java设计模式能够有所帮助。转载请注明,谢谢。

更多设计模式的介绍请到悟空模式-java设计模式中查看。

  • 0
    点赞
  • 0
    收藏
    觉得还不错? 一键收藏
  • 0
    评论
评论
添加红包

请填写红包祝福语或标题

红包个数最小为10个

红包金额最低5元

当前余额3.43前往充值 >
需支付:10.00
成就一亿技术人!
领取后你会自动成为博主和红包主的粉丝 规则
hope_wisdom
发出的红包
实付
使用余额支付
点击重新获取
扫码支付
钱包余额 0

抵扣说明:

1.余额是钱包充值的虚拟货币,按照1:1的比例进行支付金额的抵扣。
2.余额无法直接购买下载,可以购买VIP、付费专栏及课程。

余额充值