装饰器模式,顾名思义,就是对已经存在的某些类进行装饰,以此来扩展一些功能。其结构图如下:
component为统一接口,也是装饰类和被装饰类的基本类型。concretecomponent为具体实现类,也是被装饰类,他本身是个具有一些功能的完整的类。decorator是装饰类,实现了component接口的同时还在内部维护了一个concretecomponent的实例,并可以通过构造函数初始化。而decorator本身,通常采用默认实现,他的存在仅仅是一个声明:我要生产出一些用于装饰的子类了。而其子类才是赋有具体装饰效果的装饰产品类。concretedecorator是具体的装饰产品类,每一种装饰产品都具有特定的装饰效果。可以通过构造器声明装饰哪种类型的concretecomponent,从而对其进行装饰。<?php/***装饰器模式**/interface component{ public function operation();}class concretecomponent implements component{ public $put_str = "具体新西兰是哪个国家实现类"; public function operation重庆工商大学排名(){ echo $this->put_str."\n"; } public function addelement($str){ $this->put_str = $str.$this->put_str; }}abstract class decorator implements component{ public $comm; public function __construct(component $comm){ $this->comm 词语摘抄= $comm; } abstract function operation();}class concretedecoratora extends decorator{ public function operation(){ $this->comm->addelement("被a修饰后的"); $this->comm->operation(); }}class concretedecoratorb extends decorator{ public function operation(){ $this->comm->addelement("被b修饰后的"); $金融与证券专业this->comm->operation(); }}$comm = new concretecomponent();$comm->operation(); // 输出 “具体实现类”$decorate_a = new concretedecoratora($comm);$decorate_a->operation(); // 输出 “被a修饰后的具体实现类”$decorate_b = new concretedecoratorb($comm);$decorate_b->operation(); // 输出 “被严肃b修饰后的被a修饰后的具体实现类”
什么时候使用?:一般的,我们为了扩展一个类经常使用继承方式实现,由于继承为类引入静态特征,并且随着扩展功能的增多,子类会很膨胀。在不想增加很多子类的情况下扩展类可以使用这种设计模式
本文发布于:2023-04-07 05:08:07,感谢您对本站的认可!
本文链接:https://www.wtabcd.cn/fanwen/zuowen/2a4de6014eb8d124fb47cc8904eb7bb0.html
版权声明:本站内容均来自互联网,仅供演示用,请勿用于商业和其他非法用途。如果侵犯了您的权益请与我们联系,我们将在24小时内删除。
本文word下载地址:【php设计模式】装饰器模式.doc
本文 PDF 下载地址:【php设计模式】装饰器模式.pdf
留言与评论(共有 0 条评论) |