工廠方法模式,也叫工廠模式,多型工廠模式,將具體產品的例項的建立延遲到工廠類的子類中,即由子類決定具體該例項化哪個產品需要的類:
步驟:
// 建立抽象產品類
public inte***ce ifactory
// 建立具體產品類a
public class productaimpl implements iproduct
}// 建立具體產品類b
public class productbimpl implements iproduct
}// 建立抽象工廠類
public inte***ce ifactory
// 建立具體工廠類a
public class factorya implements ifactory
}// 建立具體工廠類b
public class factoryb implements ifactory
}// 建立測試類
public static void main(string args)
結果:工廠方法模式——介面:我是a
工廠方法模式-介面:我是b
複製**
總結:
缺點: 優點:
設計模式 工廠方法模式
一 工廠方法 factory method 模式 工廠方法模式的意義是定義乙個建立產品物件的工廠介面,將實際建立工作推遲到工廠子類當中。核心工廠類不再負責產品的建立,這樣核心類成為乙個抽象工廠角色,僅負責具體工廠子類必須實現的介面,這樣進一步抽象化的好處是使得工廠方法模式可以使系統在不修改具體工廠角...
設計模式 工廠方法模式
1 factorymethod.h ifndef factorymethod h define factorymethod h include include using namespace std class osproduct 產品,product,產品的抽象類 class windowspro...
設計模式 工廠方法模式
框架的基礎知識 對框架的理解 框架和設計模式的關係 工廠方法模式 定義 定義乙個用於建立物件的介面,讓子類決定例項化哪乙個類,factory method使乙個類的例項化延遲到其子類。結構 產品 public inte ce product 具體產品 public class productimpl...