首页 > 代码库 > 设计模式 - 抽象工厂模式(abstract factory pattern) 详解
设计模式 - 抽象工厂模式(abstract factory pattern) 详解
抽象工厂模式(abstract factory pattern) 详解
本文地址: http://blog.csdn.net/caroline_wendy/article/details/27091671
参考工厂模式: http://blog.csdn.net/caroline_wendy/article/details/27081511
抽象工厂模式: 提供一个接口, 用于创建相关或依赖对象的家族, 而不需要明确指定具体类.
全部代码: http://download.csdn.net/detail/u012515223/7403553
具体方法:
1. 提供一个抽象工厂(abstract factory)接口(interface)类, 不同的具体工厂(concrete factory)继承此类.
代码:
/** * @time 2014年5月26日 */ package factory; /** * @author C.L.Wang * */ public interface PizzaIngredientFactory { public Dough createDough(); public Sauce createSauce(); public Cheese createCheese(); public Veggies[] createVeggies(); public Pepperoni createPepperoni(); public Clams createClam(); }
2. 具体工厂(concrete factory), 实现抽象工厂(abstract factory)接口(interface).
代码:
/** * @time 2014年5月26日 */ package factory; /** * @author C.L.Wang * */ public class NYPizzaIngredientFactory implements PizzaIngredientFactory { /* (non-Javadoc) * @see factory.PizzaIngredientFactory#createDough() */ @Override public Dough createDough() { // TODO Auto-generated method stub return new ThinCrustDough(); } /* (non-Javadoc) * @see factory.PizzaIngredientFactory#createSauce() */ @Override public Sauce createSauce() { // TODO Auto-generated method stub return new MarinaraSauce(); } /* (non-Javadoc) * @see factory.PizzaIngredientFactory#createCheese() */ @Override public Cheese createCheese() { // TODO Auto-generated method stub return new ReggianoCheese(); } /* (non-Javadoc) * @see factory.PizzaIngredientFactory#createVeggies() */ @Override public Veggies[] createVeggies() { // TODO Auto-generated method stub Veggies veggies[] = {new Garlic(), new Onion(), new Mushroom(), new RedPepper()}; return veggies; } /* (non-Javadoc) * @see factory.PizzaIngredientFactory#createPepperoni() */ @Override public Pepperoni createPepperoni() { // TODO Auto-generated method stub return new SlicedPepperoni(); } /* (non-Javadoc) * @see factory.PizzaIngredientFactory#createClam() */ @Override public Clams createClam() { // TODO Auto-generated method stub return new FreshClams(); } } /** * @time 2014年5月26日 */ package factory; /** * @author C.L.Wang * */ public class ChicagoPizzaIngredientFactory implements PizzaIngredientFactory { /* (non-Javadoc) * @see factory.PizzaIngredientFactory#createDough() */ @Override public Dough createDough() { // TODO Auto-generated method stub return new ThickCrustDough(); } /* (non-Javadoc) * @see factory.PizzaIngredientFactory#createSauce() */ @Override public Sauce createSauce() { // TODO Auto-generated method stub return new PlumTomatoSauce(); } /* (non-Javadoc) * @see factory.PizzaIngredientFactory#createCheese() */ @Override public Cheese createCheese() { // TODO Auto-generated method stub return new MozzarellaCheese(); } /* (non-Javadoc) * @see factory.PizzaIngredientFactory#createVeggies() */ @Override public Veggies[] createVeggies() { // TODO Auto-generated method stub Veggies veggies[] = {new BlackOlives(), new Spinach(), new Eggplant()}; return veggies; } /* (non-Javadoc) * @see factory.PizzaIngredientFactory#createPepperoni() */ @Override public Pepperoni createPepperoni() { // TODO Auto-generated method stub return new SlicedPepperoni(); } /* (non-Javadoc) * @see factory.PizzaIngredientFactory#createClam() */ @Override public Clams createClam() { // TODO Auto-generated method stub return new FrozenClams(); } }
3. 产品抽象(abstract)父类, 提供接口, 供具体产品(concrete product)调用.
代码:
/** * @time 2014年5月26日 */ package factory; /** * @author C.L.Wang * */ public abstract class Pizza { String name; Dough dough; //生面团 Sauce sauce; //调味汁 Veggies veggies[]; Cheese cheese; Pepperoni pepperoni; Clams clam; abstract void prepare(); void bake() { System.out.println("Bake for 25 minutes at 350"); } void cut() { System.out.println("Cutting the pizza into diagonal slices"); } void box() { System.out.println("Place pizza in official PizzaStore box"); } void setName(String name) { this.name = name; } public String getName() { return name; } }
4. 具体产品(concrete product)继承产品抽象(abstract)父类, 使用工厂类实现继承接口, 通过不同的工厂生产不同的产品;
代码:
/** * @time 2014年5月26日 */ package factory; /** * @author C.L.Wang * */ public class CheesePizza extends Pizza { PizzaIngredientFactory pizzaIngredientFactory; public CheesePizza(PizzaIngredientFactory pizzaIngredientFactory) { this.pizzaIngredientFactory = pizzaIngredientFactory; } /* (non-Javadoc) * @see factory.Pizza#prepare() */ @Override void prepare() { // TODO Auto-generated method stub System.out.println("Preparing " + name); dough = pizzaIngredientFactory.createDough(); sauce = pizzaIngredientFactory.createSauce(); cheese = pizzaIngredientFactory.createCheese(); System.out.println("Ingredient : " + dough + ", " + sauce + ", " + cheese); } } /** * @time 2014年5月26日 */ package factory; /** * @author C.L.Wang * */ public class ClamPizza extends Pizza { PizzaIngredientFactory pizzaIngredientFactory; public ClamPizza(PizzaIngredientFactory pizzaIngredientFactory) { this.pizzaIngredientFactory = pizzaIngredientFactory; } /* (non-Javadoc) * @see factory.Pizza#prepare() */ @Override void prepare() { // TODO Auto-generated method stub System.out.println("Preparing " + name); dough = pizzaIngredientFactory.createDough(); sauce = pizzaIngredientFactory.createSauce(); cheese = pizzaIngredientFactory.createCheese(); clam = pizzaIngredientFactory.createClam(); System.out.println("Ingredient : " + dough + ", " + sauce + ", " + cheese + ", " + clam); } }
5. 具体调用函数, 通过传递不同的参数, 调用不同的工厂, 生产出不同的产品.
代码:
/** * @time 2014年5月26日 */ package factory; /** * @author C.L.Wang * */ public class NYPizzaStore extends PizzaStore { /* (non-Javadoc) * @see factory.PizzaStore#createPizza(java.lang.String) */ @Override Pizza createPizza(String item) { // TODO Auto-generated method stub Pizza pizza = null; PizzaIngredientFactory pizzaIngredientFactory = new NYPizzaIngredientFactory(); if (item.equals("cheese")) { pizza = new CheesePizza(pizzaIngredientFactory); pizza.setName("New York Style Cheese Pizza"); } else if (item.equals("clam")) { pizza = new ClamPizza(pizzaIngredientFactory); pizza.setName("New York Style Clam Pizza"); } return pizza; } } /** * @time 2014年5月26日 */ package factory; /** * @author C.L.Wang * */ public class ChicagoPizzaStore extends PizzaStore { /* (non-Javadoc) * @see factory.PizzaStore#createPizza(java.lang.String) */ @Override Pizza createPizza(String item) { // TODO Auto-generated method stub Pizza pizza = null; PizzaIngredientFactory pizzaIngredientFactory = new ChicagoPizzaIngredientFactory(); if (item.equals("cheese")) { pizza = new CheesePizza(pizzaIngredientFactory); pizza.setName("Chicago Style Cheese Pizza"); } else if (item.equals("clam")) { pizza = new ClamPizza(pizzaIngredientFactory); pizza.setName("Chicago Style Clam Pizza"); } return pizza; } }
6. 测试函数
代码:
/** * @time 2014年5月26日 */ package factory; /** * @author C.L.Wang * */ public class PizzaTestDrive { /** * @param args */ public static void main(String[] args) { // TODO Auto-generated method stub PizzaStore nyStore = new NYPizzaStore(); PizzaStore chicagoStore = new ChicagoPizzaStore(); Pizza pizza = nyStore.orderPizza("cheese"); System.out.println("Ethan ordered a " + pizza.getName() + "\n"); pizza = chicagoStore.orderPizza("cheese"); System.out.println("Joel ordered a " + pizza.getName() + "\n"); pizza = nyStore.orderPizza("clam"); System.out.println("Ethan ordered a " + pizza.getName() + "\n"); pizza = chicagoStore.orderPizza("clam"); System.out.println("Joel ordered a " + pizza.getName() + "\n"); } }
7. 输出:
Preparing New York Style Cheese Pizza Ingredient : Thin Crust Dough, Marinara Sauce, Reggiano Cheese Bake for 25 minutes at 350 Cutting the pizza into diagonal slices Place pizza in official PizzaStore box Ethan ordered a New York Style Cheese Pizza Preparing Chicago Style Cheese Pizza Ingredient : ThickCrust style extra thick crust dough, Tomato sauce with plum tomatoes, Shredded Mozzarella Bake for 25 minutes at 350 Cutting the pizza into diagonal slices Place pizza in official PizzaStore box Joel ordered a Chicago Style Cheese Pizza Preparing New York Style Clam Pizza Ingredient : Thin Crust Dough, Marinara Sauce, Reggiano Cheese, Fresh Clams from Long Island Sound Bake for 25 minutes at 350 Cutting the pizza into diagonal slices Place pizza in official PizzaStore box Ethan ordered a New York Style Clam Pizza Preparing Chicago Style Clam Pizza Ingredient : ThickCrust style extra thick crust dough, Tomato sauce with plum tomatoes,... Bake for 25 minutes at 350 Cutting the pizza into diagonal slices Place pizza in official PizzaStore box Joel ordered a Chicago Style Clam Pizza
声明:以上内容来自用户投稿及互联网公开渠道收集整理发布,本网站不拥有所有权,未作人工编辑处理,也不承担相关法律责任,若内容有误或涉及侵权可进行投诉: 投诉/举报 工作人员会在5个工作日内联系你,一经查实,本站将立刻删除涉嫌侵权内容。