标签:通过 实例 保存 高效 object ack stack reg 定制
1、概念
原型模式一种创建型设计模式,允许一个对象再创建另外一个可定制的对象,根本无需知道任何如何创建的细节。在实际应用中,原型模式很少单独出现。经常与其他模式混用,他的原型类Prototype也常用抽象类来替代。
2、模式结构
3、使用场景
4、优缺点
优点:
缺点:
5、实例
public abstract class Shape implements Cloneable {
private String type;
abstract void draw();
public String getType() {
return type;
}
public void setType(String type) {
this.type = type;
}
@Override
protected Object clone() throws CloneNotSupportedException {
Object clone = null;
try {
clone = super.clone();
} catch (CloneNotSupportedException e) {
e.printStackTrace();
}
return clone;
}
}
public class Rectangle extends Shape {
private String name = "Rectangle";
public Rectangle() {
setType(name);
}
@Override
void draw() {
// 画图逻辑
}
}
public class Square extends Shape {
private String name = "Square";
public Square() {
setType(name);
}
@Override
void draw() {
// 画图逻辑
}
}
public class Client {
private HashMap<String, Shape> showcase = new HashMap<>();
public void register(String name, Shape shape) {
showcase.put(name, shape);
}
public Shape create(String name) {
Shape shape = showcase.get(name);
try {
return (Shape) shape.clone();
} catch (CloneNotSupportedException e) {
e.printStackTrace();
}
return null;
}
}
标签:通过 实例 保存 高效 object ack stack reg 定制
原文地址:https://www.cnblogs.com/fomin/p/9842272.html