美文网首页
原型模式

原型模式

作者: 863cda997e42 | 来源:发表于2018-03-06 09:45 被阅读1次

    定义:用原型实例制定创建对象的种类,并且通过拷贝这些原型创建新的对象。

    实现一个接口,然后重写clone方法。

    public class PrototypeClass implements Cloneable{
        public PrototypeClass clone(){
            PrototypeClass prototypeClass = null;
            
            try{
                prototypeClass = (PrototypeClass)super.clone();
            } catch(CloneNotSupportedException e){
                e.printStackTrace();
            }
            return prototypeClass;
        }
    }
    

    相关文章

      网友评论

          本文标题:原型模式

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