美文网首页
原型模式(Prototype)

原型模式(Prototype)

作者: 森码 | 来源:发表于2018-07-25 21:33 被阅读0次
    1. 定义
      通过“复制”一个已经存在的实例来返回新的实例,而不是新建实例。被复制的实例就是我们所称的“原型”,这个原型是可定制的。
      原型模式多用于创建复杂的或者耗时的实例,因为这种情况下,复制一个已经存在的实例使程序运行更高效;或者创建值相等,只是命名不一样的同类数据。

    2. 类图


      Prototype.png
    1. 例子
     /** Prototype Class **/
     public class Cookie implements Cloneable {
       
        public Object clone() throws CloneNotSupportedException
        {
            //In an actual implementation of this pattern you would now attach references to
            //the expensive to produce parts from the copies that are held inside the prototype.
            return (Cookie) super.clone();
        }
     }
     
     /** Concrete Prototypes to clone **/
     public class CoconutCookie extends Cookie { }
     
     /** Client Class**/
     public class CookieMachine
     {
     
       private Cookie cookie;//cookie必须是可复制的
     
         public CookieMachine(Cookie cookie) { 
             this.cookie = cookie; 
         } 
    
        public Cookie makeCookie()
        {
            try
            {
                return (Cookie) cookie.clone();
            } catch (CloneNotSupportedException e)
            {
                e.printStackTrace();
            }
            return null;
        } 
    
     
         public static void main(String args[]){ 
             Cookie tempCookie =  null; 
             Cookie prot = new CoconutCookie(); 
             CookieMachine cm = new CookieMachine(prot); //设置原型
             for(int i=0; i<100; i++) 
                 tempCookie = cm.makeCookie();//通过复制原型返回多个cookie 
         } 
     }
    

    其实我们也可以通过序列化来实现。

    补充
    对于浅拷贝和深拷贝的问题

    相关文章

      网友评论

          本文标题:原型模式(Prototype)

          本文链接:https://www.haomeiwen.com/subject/guvmmftx.html