andy's blog

记录我的所做所思

  BlogJava :: 首页 :: 联系 :: 聚合  :: 管理
  1 Posts :: 13 Stories :: 0 Comments :: 0 Trackbacks

常用链接

留言簿(1)

我参与的团队

搜索

  •  

最新评论

一:
    准备饮料的方法:
   
public class Coffee(){
public void prepareRecipe(){
  boilWater();
  brewCoffeeGrinds();
  pourInCup();
  addSugarAndMilk();
 }

  
//..
}

public class Tea(){
public void prepareRecipe(){
  boilWater();
  steepTeaBag();
  pourInCup();
  addLemon();
  
//..

 }

}
可以发现,这两个类中prepareRecipe()方法,部分代码是一样的,所以把这个方法提到基类中,其中boilWater()和pourInCup()方法所有子类都是一样的,可以在基类实现,其它两个方法为abstract,又具体子类来实现。
 
The Template Pattern defines the skeleton of an alogrithm in a method,deffering some steps to subclass.
                                   Template Pattern lets subclass redefine certain steps of an alogrithm without changing the alogrithm's structure.
posted on 2006-03-30 15:56 zhoumin 阅读(76) 评论(0)  编辑  收藏 所属分类: 设计模式

只有注册用户登录后才能发表评论。


网站导航: