andy's blog
记录我的所做所思
BlogJava
::
首页
::
联系
::
聚合
::
管理
1 Posts :: 13 Stories :: 0 Comments :: 0 Trackbacks
常用链接
我的随笔
我的评论
我的参与
留言簿
(1)
给我留言
查看公开留言
查看私人留言
我参与的团队
随笔分类
日志(1)
随笔档案
2006年3月 (1)
文章分类
Ant&Maven
English(1)
Hibernate
Ibatis
J2EE技术
JAVA语言(1)
Junit
Log
Spring
Velocity
其它技术
总体
考研
设计模式(11)
重构
文章档案
2006年5月 (1)
2006年4月 (1)
2006年3月 (11)
收藏夹
JAVA相关(1)
java相关
考研
搜索
最新评论
Template
一:
准备饮料的方法:
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)
编辑
收藏
所属分类:
设计模式
新用户注册
刷新评论列表
只有注册用户
登录
后才能发表评论。
网站导航:
博客园
IT新闻
Chat2DB
C++博客
博问
管理
相关文章:
Singleton
Iterator
Template
Proxy
Facade
Adapter
Factory
Decorator
Observer
Strategy
Copyright @ zhoumin
Powered by:
.Text
and
ASP.NET
Theme by:
.NET Monster