php设计模式之装饰模式应用案例详解

作者:赵筱蕊 时间:2023-11-14 13:37:20 

本文实例讲述了php设计模式之装饰模式。分享给大家供大家参考,具体如下:

介绍

  • 装饰者模式(Decorator Pattern)允许你向一个现有的对象添加新的功能,同时又不改变其结构。 这种类型的设计模式属于结构型模式,它是作为现有的类的一个包装。

  • 这种模式创建了一个装饰类,用来包装原有的类,并在保持类方法签名完整性的前提下,提供了额外的功能。

主要角色

  • 抽象构件(Component)角色:定义一个独享接口,以规范准备接收附加职责的对象,从而可以给这些对象动态的添加职责。

  • 具体构件(Concrete Component)角色:定义一个将要接收附加职责的类。

  • 装饰(Decorator)角色:持有一个指向Component对象的指针,并定义一个与Component接口一致的接口。

  • 具体装饰(Concrete Decorator)角色:负责给构件对象增加附加的职责。

下面是使用装饰模式的一个简单实现:


class RequestHelper{}
abstract class ProcessRequest{
 abstract function process(RequestHelper $req);
}
class MainProcess extends ProcessRequest{
 function process(RequestHelper $req)
 {
   print __CLASS__.": doing something useful with request\n";
 }
}
abstract class DecorateProcess extends ProcessRequest{
 protected $processRequest;
 function __construct(ProcessRequest $pr)
 {
   $this->processRequest = $pr;
 }
}

和之前一样,我们定义了一个抽象基类(ProcessRequest)、一个具体的组件(MainProcess)和一个抽象装饰类(DecorateProcess)。 MainProcess::process()方法仅仅报告方法被调用,并没有其他功能。DecorateProcess为他的子类保存了一个ProcessRequest对象。下面是一些简单的具体装饰类:


class LogRequest extends DecorateProcess{
 function process(RequestHelper $req)
 {
   print __CLASS__.": logging request\n";
   $this->processRequest->process($req);
 }
}
class AuthenticateRequest extends DecorateProcess{
 function process(RequestHelper $req)
 {
   print __CLASS__.": authenticating request\n";
   $this->processRequest->process($req);
 }
}
class StructureRequest extends DecorateProcess{
 function process(RequestHelper $req)
 {
   print __CLASS__.": structuring request\n";
   $this->processRequest->process($req);
 }
}

装饰类的每一个process()方法在调用引用的processRequest对象的Process()方法前输出一条信息。

现在我们可以在运行时合并这些类的对象,创建过滤器来对每一个请求按不同的顺序执行不同操作。下面的代码将所有具体类的对象组合成为一个过滤器:


$process = new AuthenticateRequest(new StructureRequest(
 new LogRequest(
   new MainProcess()
 )));
$process->process(new RequestHelper());

执行代码会得到下面的输出结果:

Authenticate
Request: authenticating request
StructureRequest: structuring request
LogRequest: logging request
MainProcess: doing something useful with request

优点:

装饰类和被装饰类可以独立发展,不会相互耦合,装饰模式是继承的一个代替模式,装饰模式可以动态扩展一个实现类的功能。

缺点:

多层装饰比较负责。

希望本文所述对大家PHP程序设计有所帮助。

来源:https://blog.csdn.net/zhaoxiaoruiR/article/details/88058380

标签:php,设计模式,装饰模式
0
投稿

猜你喜欢

  • PHP.vs.JAVA

    2023-11-17 20:28:51
  • Python基于list的append和pop方法实现堆栈与队列功能示例

    2022-10-20 02:26:26
  • python利用tkinter实现屏保

    2022-01-26 05:39:51
  • php用header函数实现301跳转代码实例

    2023-10-08 11:29:59
  • 一文看懂JSONP原理和应用

    2024-04-23 09:10:47
  • 使用Python获取并处理IP的类型及格式方法

    2023-12-20 00:18:23
  • c#获得目标服务器中所有数据库名、表名、列名的实现代码

    2024-01-25 11:20:48
  • opencv实现回形遍历像素算法

    2021-12-26 01:49:30
  • javascript同页面多次调用弹出层具体实例代码

    2024-04-10 14:02:31
  • Mysql中的find_in_set的使用方法介绍

    2024-01-14 06:24:19
  • oracle查看被锁的表和被锁的进程以及杀掉这个进程

    2024-01-15 12:04:15
  • ubuntu 16.04下python版本切换的方法

    2021-07-10 16:36:04
  • python numpy生成等差数列、等比数列的实例

    2023-04-16 14:43:58
  • Ubuntu 下 vim 搭建python 环境 配置

    2022-04-27 21:25:17
  • 游戏的用户体验营销小札

    2009-08-30 15:13:00
  • python pytorch图像识别基础介绍

    2021-02-02 03:13:13
  • vue项目中将element-ui table表格写成组件的实现代码

    2024-05-28 15:55:31
  • python 实现端口扫描工具

    2022-12-05 23:02:45
  • 低版本中Python除法运算小技巧

    2021-11-14 00:54:00
  • pandas删除某行或某列数据的实现示例

    2021-01-05 07:24:33
  • asp之家 网络编程 m.aspxhome.com