您好,欢迎来到三六零分类信息网!老站,搜索引擎当天收录,欢迎发信息

PHP设计模式--装饰器模式

2024/3/18 1:09:24发布16次查看
声明:本系列博客参考资料《大话设计模式》,作者程杰。
装饰器模式又叫装饰者模式。装饰模式是在不必改变原类文件和使用继承的情况下,动态地扩展一个对象的功能。它是通过创建一个包装对象,也就是装饰来包裹真实的对象。
uml类图:
角色:
       组件对象的接口:可以给这些对象动态的添加职责
       所有装饰器的父类:需要定义一个与组件接口一致的接口,并持有一个component对象,该对象其实就是被装饰的对象。
       具体的装饰器类:实现具体要向被装饰对象添加的功能。用来装饰具体的组件对象或者另外一个具体的装饰器对象。
        具体代码:
name=$name; } function display() { echo 装扮的:{$this->name}
; }}/**所有装饰器父类 * class clothes */class clothes implements icomponent{ protected $component; function decorate(icomponent $component) { $this->component=$component; } function display() { if(!empty($this->component)) { $this->component->display(); } }}//------------------------------具体装饰器----------------class pixie extends clothes{ function display() { echo 皮鞋 ; parent::display(); }}class qiuxie extends clothes{ function display() { echo 球鞋 ; parent::display(); }}class tshirt extends clothes{ function display() { echo t恤 ; parent::display(); }}class waitao extends clothes{ function display() { echo 外套 ; parent::display(); }}
调用客户端测试代码:
header(content-type:text/html;charset=utf-8);//------------------------装饰器模式测试代码------------------require_once ./decorator/decorator.php;$yaoming=new person(姚明);$atai=new person(a泰斯特);$pixie=new pixie();$waitao=new waitao();$pixie->decorate($yaoming);$waitao->decorate($pixie);$waitao->display();echo ;$qiuxie=new qiuxie();$tshirt=new tshirt();$qiuxie->decorate($atai);$tshirt->decorate($qiuxie);$tshirt->display();
适用场景: 
        1. 需要动态的给一个对象添加功能,这些功能可以再动态的撤销。
        2. 需要增加由一些基本功能的排列组合而产生的非常大量的功能,从而使继承关系变的不现实。
        3. 当不能采用生成子类的方法进行扩充时。一种情况是,可能有大量独立的扩展,为支持每一种组合将产生大量的子类,使得子类数目呈爆炸性增长。另一种情况可能是因为类定义被隐藏,或类定义不能用于生成子类。
php面向对象设计模式
该用户其它信息

VIP推荐

免费发布信息,免费发布B2B信息网站平台 - 三六零分类信息网 沪ICP备09012988号-2
企业名录 Product