定义:
用原型实例指定创建对象的种类,并且通过拷贝这些原型创建新的对象.
Prototype模式允许一个对象再创建另外一个可定制的对象,根本无需知道任何如何创建的细节,工作原理是:通过将一个原型对象传给那个要发动创建的对象,这个要发动创建的对象通过请求原型对象拷贝它们自己来实施创建
浅复制
被复制对象的所有变量都含有与原来的对象相同的值,而所有的对其他对象的引用都仍然指向原来的对象。换言之,浅复制仅仅复制所考虑的对象,而不复制它所引用的对象。
深复制
被复制对象的所有的变量都含有与原来的对象相同的值,除去那些引用其他对象的变量。那些引用其他对象的变量将指向被复制过的新对象,而不再是原有的那些被引用的对象。换言之,深复制把重复的对象所引用的对象都复制一遍,而这种对被引用到的对象的复制叫做间接复制。
浅复制
Mokey.JAVA
package desin.Prototype.lower;
import java.util.Date;
public class Mokey implements Cloneable {
private int height;
private int weight;
private Date birthDate;
private GoldRingdeStaff goldRingdeStaff;
public Mokey(){
birthDate= new Date();
}
public Date getBirthDate() {
return birthDate;
}
public void setBirthDate(Date birthDate) {
this.birthDate = birthDate;
}
public int getHeight() {
return height;
}
public void setHeight(int height) {
this.height = height;
}
public int getWeight() {
return weight;
}
public void setWeight(int weight) {
this.weight = weight;
}
public Object clone(){
Mokey mokey=null;
try {
mokey=(Mokey)super.clone();
} catch (CloneNotSupportedException e) {
// TODO 自动生成 catch 块
e.printStackTrace();
}
finally{
return mokey;
}
}
public GoldRingdeStaff getGoldRingdeStaff() {
return goldRingdeStaff;
}
public void setGoldRingdeStaff(GoldRingdeStaff goldRingdeStaff) {
this.goldRingdeStaff = goldRingdeStaff;
}
}
GoldRingdeStaff。JAVA
package desin.Prototype.lower;
public class GoldRingdeStaff {
private float height=100.0f;
private float weight=10.0f;
public float getHeight() {
return height;
}
public void setHeight(float height) {
this.height = height;
}
public float getWeight() {
return weight;
}
public void setWeight(float weight) {
this.weight = weight;
}
}
testClient.JAVA
package desin.Prototype.lower;
public class testClient {
private Mokey mokey= new Mokey();
public void change(){
Mokey copymokey2;
copymokey2=(Mokey)mokey.clone();
System.out.println("monkey birth date :"+mokey.getBirthDate());
System.out.println("copymokey2 birth date :"+copymokey2.getBirthDate());
System.out.println("copymokey2 ==monkey :"+(copymokey2==mokey));
System.out.println("copymokey2 staff ==monkey staff:"+(copymokey2.getGoldRingdeStaff()==mokey.getGoldRingdeStaff()));
}
public static void main(String[] args) {
// TODO 自动生成方法存根
testClient testClient= new testClient();
testClient.change();
}
}
深复制
Mokey.JAVA
package desin.Prototype.deep;
import java.io.ByteArrayInputStream;
import java.io.ByteArrayOutputStream;
import java.io.IOException;
import java.io.ObjectInputStream;
import java.io.ObjectOutputStream;
import java.io.Serializable;
import java.util.Date;
import com.sun.corba.se.internal.io.OptionalDataException;
public class Mokey implements Serializable, Cloneable {
private int height;
private int weight;
private Date birthDate;
private GoldRingdeStaff goldRingdeStaff;
public Mokey(){
this.birthDate=new Date();
this.goldRingdeStaff=new GoldRingdeStaff();
}
public Date getBirthDate() {
return birthDate;
}
public void setBirthDate(Date birthDate) {
this.birthDate = birthDate;
}
public GoldRingdeStaff getGoldRingdeStaff() {
return goldRingdeStaff;
}
public void setGoldRingdeStaff(GoldRingdeStaff goldRingdeStaff) {
this.goldRingdeStaff = goldRingdeStaff;
}
public int getHeight() {
return height;
}
public void setHeight(int height) {
this.height = height;
}
public int getWeight() {
return weight;
}
public void setWeight(int weight) {
this.weight = weight;
}
public Object deepClone() throws IOException,OptionalDataException,ClassNotFoundException{
ByteArrayOutputStream bo = new ByteArrayOutputStream();
ObjectOutputStream oo= new ObjectOutputStream(bo);
oo.writeObject(this);
ByteArrayInputStream bi = new ByteArrayInputStream(bo.toByteArray());
ObjectInputStream oi= new ObjectInputStream(bi);
return (oi.readObject());
}
}
GoldRingdeStaff.JAVA
package desin.Prototype.deep;
import java.io.Serializable;
public class GoldRingdeStaff implements Cloneable, Serializable {
private float height=100.0f;
private float weight=10.0f;
public float getHeight() {
return height;
}
public void setHeight(float height) {
this.height = height;
}
public float getWeight() {
return weight;
}
public void setWeight(float weight) {
this.weight = weight;
}
}
testClient.JAVA
package desin.Prototype.deep;
import java.io.IOException;
import com.sun.corba.se.internal.io.OptionalDataException;
public class testClient {
private Mokey mokey= new Mokey();
public void change()throws IOException,OptionalDataException,ClassNotFoundException{
Mokey copymokey2;
copymokey2=(Mokey)mokey.deepClone();
System.out.println("monkey birth date :"+mokey.getBirthDate());
System.out.println("copymokey2 birth date :"+copymokey2.getBirthDate());
System.out.println("copymokey2 ==monkey :"+(copymokey2==mokey));
System.out.println("copymokey2 staff ==monkey staff:"+(copymokey2.getGoldRingdeStaff()==mokey.getGoldRingdeStaff()));
}
public static void main(String[] args) throws IOException,OptionalDataException,ClassNotFoundException{
// TODO 自动生成方法存根
testClient testClient= new testClient();
testClient.change();
}
}
分享到:
相关推荐
**Java设计模式之原型模式详解** 原型模式(Prototype Pattern)是设计模式中的一种结构型模式,主要用于快速创建对象。在Java中,它基于对象克隆的概念,允许我们复制已有对象而不必再次创建新实例,从而降低系统...
java设计模式之工厂模式java设计模式之工厂模式java设计模式之工厂模式java设计模式之工厂模式java设计模式之工厂模式java设计模式之工厂模式java设计模式之工厂模式java设计模式之工厂模式java设计模式之工厂模式...
Java设计模式是面向对象编程领域中的重要概念,它是一套被广泛接受并实践的解决软件设计问题的经验总结。设计模式并非具体的代码或库,而是一种在特定情境下为了解决常见问题而制定的通用解决方案的描述。它们描述了...
Java 经典设计模式讲解以及项目实战 设计模式简介:主要介绍各种设计模式的概念和运用场景等 设计模式综合运用:主要是笔者在实际工作中运用到的一些设计模式综合运用事例的提炼 Spring设计模式简介:主要是讲述...
《Java设计模式之禅》是一本深入浅出讲解设计模式的书籍,书中不仅包含23种经典设计模式的案例,还详细介绍了设计模式背后的思想和原则,适合初学者以及对设计模式有一定了解的程序员阅读。本书旨在帮助读者理解如何...
### Java设计模式详解 #### 一、背景与概念 在软件工程领域,设计模式是一种用于解决常见问题的可重用解决方案。《Java设计模式PDF》是一本由James W. Cooper编写的经典书籍,该书详细介绍了Java编程语言中的设计...
《Java设计模式》课程设计报告主要探讨了如何利用Java编程语言和MyEclipse集成开发环境来实现基于设计模式的西瓜市场系统。这个项目涵盖了四种重要的设计模式:单例模式、代理模式、建造者模式和抽象工厂模式,为...
java 设计模式之禅 6大设计原则 23种设计模式 设计模式pk 设计模式混淆应用
### Java设计模式(刘伟) #### 一、引言 在《Java设计模式》这本书中,作者刘伟全面地介绍了24种经典的设计模式,并通过丰富的案例和代码示例进行了详细的解析。本书不仅适合初学者作为入门教材,也适合有一定...
Java设计模式是软件工程中的一种最佳实践,它总结了在特定场景下解决常见问题的经验,为程序员提供了可重用的解决方案。本资料“《java设计模式》课后习题模拟试题解答——刘伟.zip”主要涵盖了Java设计模式的学习与...
《Java设计模式》是刘伟老师的一本经典教材,它深入浅出地讲解了软件设计中的重要概念——设计模式。设计模式是经验丰富的开发者在解决常见问题时总结出的通用解决方案,是软件开发中的智慧结晶。这本书的课后习题和...
### Java设计模式详解 在软件开发领域,设计模式是一种被广泛采用的解决方案,用来解决常见的设计问题。设计模式不仅能够帮助开发者写出可复用、可维护的代码,还能提高团队间的沟通效率。以下是对给定文件中提到的...
设计模式之Prototype(原型) 设计模式之Builder 设计模式之Singleton(单态) 结构模式: 设计模式之Facade(外观) 设计模式之Proxy(代理) 设计模式之Adapter(适配器) 设计模式之Composite(组合) 设计模式之Decorator...
java设计模式考试题全文共4页,当前为第1页。java设计模式考试题全文共4页,当前为第1页。 java设计模式考试题全文共4页,当前为第1页。 java设计模式考试题全文共4页,当前为第1页。 java设计模式考试题全文共4页,...
此外,为了确保参考资料的权威性,建议读者查阅原书《Java设计模式》以获得更加详尽的解释和说明。如果有任何意见或建议,可以通过提供的电子邮箱与作者联系。在学习设计模式的过程中,理解每一个模式的意图、结构、...
《Java设计模式》是刘伟教授的一本关于设计模式的教材,主要面向高等学校的学生和对Java编程有深入兴趣的开发者。设计模式是软件工程中的一种重要思想,它封装了在特定场景下的问题解决方案,可以提高代码的可读性、...
章节介绍:1、爪哇语言结构性模式之变压器模式介绍 2、爪哇语言抽象工厂创立性模式介绍 3、工厂方法创立...10、设计模式之State 11、设计模式之Facade(外观) 12、设计模式之Interpreter(解释器) 13、设计模式之Visitor
使用5种设计模式完成的一个点单系统,显示不同系列下的所有商品,点击选择冰度甜度之后添加到订单中,计算总金额,下单之后发送订单到门店的后厨制作商品。使用了抽象工厂模式、装饰模式、单例模式、代理模式、原型...