首页 > 代码库 > php设计模式--装饰模式
php设计模式--装饰模式
//手机套餐费用接口abstract class IPhonePackpageFee{ protected abstract function SpendFee(); public $Fee;}
//基础消费class MonthFee extends IPhonePackpageFee{ public function __construct($fee) { $this->Fee=$fee; } public function SpendFee () { echo("基础套餐费用:".$this->Fee); echo ("<hr/>"); }}
装饰基类:
//装饰类class DecoratorService extends IPhonePackpageFee{ private $exFee; function __construct(IPhonePackpageFee $exfee) { $this->exFee=$exfee; } public function SpendFee() { $this->exFee->SpendFee(); }}
class MobileFlow extends DecoratorService{ function __construct(DecoratorService $exService,$fee) { parent::__construct($exService); $this->Fee=$fee; } public function SpendFee() { $this->SpendFlow(); parent::SpendFee(); } private function SpendFlow() { echo ("流量费用:".$this->Fee); echo ("<br/>"); }}
调用:
echo("php装饰模式:"); echo ("<hr/>"); $monthfee=new MonthFee(30); $decorator=new DecoratorService($monthfee); $flow=new MobileFlow($decorator,12); $flow->SpendFee();
php设计模式--装饰模式
声明:以上内容来自用户投稿及互联网公开渠道收集整理发布,本网站不拥有所有权,未作人工编辑处理,也不承担相关法律责任,若内容有误或涉及侵权可进行投诉: 投诉/举报 工作人员会在5个工作日内联系你,一经查实,本站将立刻删除涉嫌侵权内容。