原型模式 Prototype Pattern 意图:使用原型实例定义/指定被创建对象种类/类型,通过拷贝原型实例创建新对象 应用场景: 1)当某个类指定在运行时实例化 2)减少子类数量 3)降低昂贵类型新对象创建成本 好处或缺点: 1)clone方法可能实现比较困难 2)不适用于含循环引用的类结构 类结构: 参与者:client ,Prototype,ConcretePrototype prototype:定义原型的行为
//关键代码 class Notification implements cloneable { string title; string content; //seters Footer footer; Nofification clone() { //try catch // return (Notification)super.clone(); } };
时间: 2024-10-04 02:40:31