B1:模板方法模式 TemplateMethod
Posted 罗夏
tags:
篇首语:本文由小常识网(cha138.com)小编为大家整理,主要介绍了B1:模板方法模式 TemplateMethod相关的知识,希望对你有一定的参考价值。
定义一个操作中的算法骨架,而将一些步骤延迟到子类中.模板方法使得子类可以不改变一个算法的结构即可重新定义该算法的某些特定步骤
应用场景:
A.操作步骤稳定,而具体细节延迟到子类.
UML:
示例代码:
所有的商品类在用户购买前,都需要给用户显示出最终支付的费用.但有些商品需要纳税,有些商品可能有打折.
abstract class Product { protected $payPrice = 0; public final function setAdjustment() { $this->payPrice += $this->discount(); $this->payPrice += $this->tax(); } public function getPayPrice() { return $this->payPrice; } protected function discount() { return 0; } abstract protected function tax(); } class CD extends Product { public function __construct($price) { $this->payPrice = $price; } protected function tax() { return 0; } } class IPhone extends Product { public function __construct($price) { $this->payPrice = $price; } protected function tax() { return $this->payPrice * 0.2; } protected function discount() { return -10; } } $cd = new CD(15); $cd->setAdjustment(); echo $cd->getPayPrice(); $iphone = new IPhone(6000); $iphone->setAdjustment(); echo $iphone->getPayPrice();
ps:一般为防止模板下属类修改模板,模板方法都会加上final
以上是关于B1:模板方法模式 TemplateMethod的主要内容,如果未能解决你的问题,请参考以下文章
设计模式 - 学习笔记 - TemplateMethod 模板方法