Prototype_pattern-原型模式
2018-06-08 本文已影响5人
oneWeekOneTopic
解决问题
原型模式,即通过原型来创造对象,而不是通过new。它在功能上是与单例模式相对的,与工厂模式的功能类似;但相对于工厂模式、它提供了一种更加简单化创造对象的方式;但原型模式相对于工厂模式中的缺陷也是很明显的,原型模式需要修改原类(实现clone),这在某些场景中是很有局限性的(比使在使用第三方的包时),而工厂模式则不需要; 可以将其理解为工厂模式是在下层解决创建对象的问题,而原型模式则是在上层实现。
应用场景
它主要应用于创建复杂对象,它的性能要优于new()
原理图
image示例
// Prototype pattern
public abstract class Prototype implements Cloneable {
public Prototype clone() throws CloneNotSupportedException{
return (Prototype) super.clone();
}
}
public class ConcretePrototype1 extends Prototype {
@Override
public Prototype clone() throws CloneNotSupportedException {
return (ConcretePrototype1)super.clone();
}
}
public class ConcretePrototype2 extends Prototype {
@Override
public Prototype clone() throws CloneNotSupportedException {
return (ConcretePrototype2)super.clone();
}
}