Java设计模式 六 原型模式 (Prototype Pattern)

embedded/2025/1/23 15:53:45/

原型模式 (Prototype Pattern)

原型模式是一种创建型设计模式,通过复制现有对象来创建新对象,而不是直接实例化类。这种模式适用于创建成本较高的对象,或者需要重复创建相似对象的场景。

原型模式的核心思想是:
通过对象自身提供的复制方法(通常是 clone() 方法),快速生成新对象,同时保持高效和灵活。


1. 原型模式的组成

  • Prototype(原型接口): 定义一个用于复制自身的接口,通常包括 clone() 方法。
  • ConcretePrototype(具体原型类): 实现 Prototype 接口,定义具体的克隆方法。
  • Client(客户端): 通过调用原型对象的 clone() 方法创建新的对象,而不需要知道具体类的信息。

2. 原型模式的优点

  • 提高对象创建效率: 克隆比使用构造函数重新实例化对象要高效。
  • 减少耦合: 客户端不需要依赖具体类,通过原型接口即可创建对象。
  • 动态创建对象: 可以在运行时动态调整对象的状态并克隆,灵活性强。

3. 原型模式的缺点

  • 复杂性增加: 如果对象包含复杂的引用类型,可能需要处理深拷贝和浅拷贝的问题。
  • 依赖 clone() 方法: 在 Java 中,必须正确实现 clone() 方法,且需要实现 Cloneable 接口,这可能会破坏类的封装性。

4. Java 中的实现

1) 实现浅拷贝的原型模式

浅拷贝只复制对象本身及其基本类型的字段,引用类型字段仅复制引用地址。

示例代码:

java">class Prototype implements Cloneable {private String field;public Prototype(String field) {this.field = field;}public String getField() {return field;}public void setField(String field) {this.field = field;}@Overrideprotected Object clone() throws CloneNotSupportedException {return super.clone();  // 浅拷贝}@Overridepublic String toString() {return "Prototype [field=" + field + "]";}
}public class Client {public static void main(String[] args) {try {// 创建原型对象Prototype prototype = new Prototype("Original");System.out.println("Original: " + prototype);// 克隆对象Prototype clonedPrototype = (Prototype) prototype.clone();System.out.println("Cloned: " + clonedPrototype);// 修改克隆对象的字段值clonedPrototype.setField("Cloned");System.out.println("After Modification:");System.out.println("Original: " + prototype);System.out.println("Cloned: " + clonedPrototype);} catch (CloneNotSupportedException e) {e.printStackTrace();}}
}

输出:

Original: Prototype [field=Original]
Cloned: Prototype [field=Original]
After Modification:
Original: Prototype [field=Original]
Cloned: Prototype [field=Cloned]

2) 实现深拷贝的原型模式

深拷贝不仅复制对象本身,还递归复制引用类型的字段。

示例代码:

java">import java.io.*;class DeepPrototype implements Serializable {private static final long serialVersionUID = 1L;private String field;private Reference reference;public DeepPrototype(String field, Reference reference) {this.field = field;this.reference = reference;}public String getField() {return field;}public void setField(String field) {this.field = field;}public Reference getReference() {return reference;}public void setReference(Reference reference) {this.reference = reference;}// 深拷贝方法public DeepPrototype deepClone() throws IOException, ClassNotFoundException {ByteArrayOutputStream bos = new ByteArrayOutputStream();ObjectOutputStream oos = new ObjectOutputStream(bos);oos.writeObject(this);ByteArrayInputStream bis = new ByteArrayInputStream(bos.toByteArray());ObjectInputStream ois = new ObjectInputStream(bis);return (DeepPrototype) ois.readObject();}@Overridepublic String toString() {return "DeepPrototype [field=" + field + ", reference=" + reference + "]";}
}class Reference implements Serializable {private static final long serialVersionUID = 1L;private String data;public Reference(String data) {this.data = data;}public String getData() {return data;}public void setData(String data) {this.data = data;}@Overridepublic String toString() {return "Reference [data=" + data + "]";}
}public class Client {public static void main(String[] args) {try {// 创建原型对象Reference reference = new Reference("Original Reference");DeepPrototype prototype = new DeepPrototype("Original Field", reference);System.out.println("Original: " + prototype);// 深拷贝DeepPrototype clonedPrototype = prototype.deepClone();System.out.println("Cloned: " + clonedPrototype);// 修改克隆对象的引用字段值clonedPrototype.getReference().setData("Modified Reference");System.out.println("After Modification:");System.out.println("Original: " + prototype);System.out.println("Cloned: " + clonedPrototype);} catch (IOException | ClassNotFoundException e) {e.printStackTrace();}}
}

输出:

Original: DeepPrototype [field=Original Field, reference=Reference [data=Original Reference]]
Cloned: DeepPrototype [field=Original Field, reference=Reference [data=Original Reference]]
After Modification:
Original: DeepPrototype [field=Original Field, reference=Reference [data=Original Reference]]
Cloned: DeepPrototype [field=Original Field, reference=Reference [data=Modified Reference]]

5. 原型模式的应用场景

  • 对象创建成本较高时: 如对象初始化过程复杂,或需要大量计算。
  • 对象差异很小且需要频繁创建时: 使用克隆可以减少重复代码。
  • 需要保存对象历史状态时: 通过克隆保存对象的副本以实现备份或撤销功能。
  • 需要创建与已有对象相似的对象时: 克隆提供了一种快速复制现有对象的方法。

6. 优缺点总结

优点:
  • 性能优越: 通过克隆直接复制对象,而不需要重新构建。
  • 简化创建过程: 尤其是对于包含大量字段的对象。
  • 动态创建: 可以在运行时动态创建对象,而无需依赖类。
缺点:
  • 复杂性: 需要正确实现 clone() 方法,尤其是处理复杂对象中的深拷贝。
  • 依赖 Cloneable 接口: Java 中的 clone() 方法存在局限性,并且可能破坏封装性。
  • 潜在安全隐患: 如果对象中的字段不安全或未正确处理,可能导致意外行为。

7. 与其他模式的比较

模式主要用途原型模式的区别
工厂方法模式通过子类决定对象创建原型模式通过克隆现有对象来创建
抽象工厂模式创建相关或依赖对象的产品族原型模式关注单个对象的复制
建造者模式分步骤构建复杂对象原型模式直接克隆对象,无需分步骤构建

8. 总结

原型模式是解决对象重复创建问题的强大工具,特别适合那些创建成本高或需要快速生成对象的场景。根据具体需求,可以选择浅拷贝或深拷贝的实现方式。尽管实现上可能会稍复杂,但它提供了灵活性和高效性,是值得掌握的重要设计模式之一。


http://www.ppmy.cn/embedded/156336.html

相关文章

使用Redis防止重复发送RabbitMQ消息

问题 今天遇到一个问题,发送MQ消息的时候需要保证不会重复发送,注意不是可靠到达(可靠到达可以通过消息确认机制和回调接口保证),这里保证的是不会生产多条一样的消息。 方法 综合讨论下来决定使用Redis缓存来解决&…

Docker 国内镜像源

目录 概述 步骤 参考资料 概述 自 2024-06-06 开始,阿里,腾讯、中科大等国内的 Docker Hub 镜像加速器相继停止服务,总结了网友整理出来一些其他国内 Docker Hub 镜像源,经过测试可以使用。 步骤 配置 Docker 守护程序 修改…

Kubectl常用命令操作

kubectl 命令格式: kubectl command type name command:表示子命令,用于操作kubernetes的集群资源对象,如:create delete describe get apply type:资源对象的类型 name:资源对象的名称 1.创建资源对象 kubectl create -f my…

Blazor-Blazor WebAssmbly项目结构(上)

创建项目 今天我们来创建一个BlazorWebAssmbly项目,来看看项目结构是如何得,我们创建带模板得项目,会创建出一个demo,来看看项目结构。 创建的项目可以直接启动运行,首次启动会看见加载的过程,这个过程…

自定义BeanPostProcessor实现自动注入标注了特定注解的Bean

定义注解 Target({ElementType.FIELD, ElementType.PARAMETER, ElementType.METHOD}) Retention(RetentionPolicy.RUNTIME) Documented public interface MyAnno { }定义一个配置类 Configuration public class RestConfig {MyAnnoBeanpublic PayDTO payDTO(){PayDTO payDTO …

mikrotik7配置内网到内网的lantolan

lan to lan又称site to site,在前面的文章已经配置wireguard实现单个ip互访,这期来实现lan to lan 客户端依然使用windows。本期在上一篇基础上增加配置 一、LAN to LAN配置 windows客户端修改 我的第一个内网网段是192.168.11.0/24,以下为相关修改 …

詳細講一下在RN(ReactNative)中,6個比較常用的組件以及詳細的用法

1.View 组件&#xff08;基础容器&#xff09; import { View, StyleSheet } from react-native;const MyComponent () > {return (<View style{styles.container} // 样式pointerEvents"none" // 控制触摸事件&#xff1a;none, box-none, box-only, …

(2025,BioLM,综述)用于生物信息学的 LLM

Large Language Models for Bioinformatics 目录 0. 摘要 1. 引言 2. 生物信息学中语言模型与基础模型的背景 2.1 语言模型与生物信息学基础概述 2.1.1 LLM 与基础模型 2.1.2 生物信息学的应用与挑战 2.2 训练方法与模型 2.2.1 预训练 2.2.2 RLHF 2.2.3 知识蒸馏 …