创建型设计模式 培训英文.ppt

上传人:99****p 文档编号:1440161 上传时间:2019-02-27 格式:PPT 页数:35 大小:1.84MB
下载 相关 举报
创建型设计模式 培训英文.ppt_第1页
第1页 / 共35页
创建型设计模式 培训英文.ppt_第2页
第2页 / 共35页
创建型设计模式 培训英文.ppt_第3页
第3页 / 共35页
创建型设计模式 培训英文.ppt_第4页
第4页 / 共35页
创建型设计模式 培训英文.ppt_第5页
第5页 / 共35页
点击查看更多>>
资源描述

1、Bryan Li6/18/2007Common if(type.equals(“chees“) pizza = new CheesePizza(); else if (type.equals(“greek“) pizza = new GreekPizza(); else if (type.equals(“pepperoni“) pizza = new PepperoniPizza();pizza.prepare();pizza.bake();pizza.cut();pizza.box();return pizza;Simple Pattern Mending design of pizza s

2、torySimple Pattern Add SimplePizzaFactory Classpublic class SimplePizzaFactory public static Pizza createPizza(String type) Pizza pizza = null;if (type.equals(“chees“) pizza = new CheesePizza(); else if (type.equals(“greek“) pizza = new GreekPizza(); else if (type.equals(“pepperoni“) pizza = new Pep

3、peroniPizza();return pizza;public class PizzaStore SimplePizzaFactory factory;public Pizza orderPizza(String type) Pizza pizza = SimplePizzaFactory.createPizza(type);pizza.prepare();pizza.bake();pizza.cut();pizza.box();return pizza;Simple Pattern Feature you dont need to instantiate an object to mak

4、e use of the create method you cant create sublcass and change the behavior of the create method Not typical design pattern- more of a programming idiom Fade Format Merge Creator into ConcreteProduct Simple Pattern Advantage Reuse the code that create object Disadvantage If product has any change, Creator class should be impacted. OO Design Principle OCP: if add new type of product, in the view of client and product, it conform to OCP, but in the view of Factory Creator, it does not.

展开阅读全文
相关资源
相关搜索

当前位置:首页 > 教育教学资料库 > 课件讲义

Copyright © 2018-2021 Wenke99.com All rights reserved

工信部备案号浙ICP备20026746号-2  

公安局备案号:浙公网安备33038302330469号

本站为C2C交文档易平台,即用户上传的文档直接卖给下载用户,本站只是网络服务中间平台,所有原创文档下载所得归上传人所有,若您发现上传作品侵犯了您的权利,请立刻联系网站客服并提供证据,平台将在3个工作日内予以改正。