工廠方法模式示例(二)

例子來源:《設計模式之禪》——第8章 工廠方法模式 Product public abstract class Product { /** * 產品類的公共方法 */ public void method1(){ // 業務邏輯處理 } /** * 抽象方法 */ public abstract void method2(); } Concr
相關文章
相關標籤/搜索