33 PHP 设计模式系列「委托模式( Delegation)」

2022-10-11 20:28:08 207 0
魁首哥

1、模式定义

委托是对一个类的功能进行扩展和复用的方法。它的做法是:写一个附加的类提供附加的功能,并使用原来的类的实例提供原有的功能。

假设我们有一个 TeamLead 类,将其既定任务委托给一个关联辅助对象 JuniorDeveloper 来完成:本来 TeamLead 处理 writeCode 方法,Usage 调用 TeamLead 的该方法,但现在 TeamLead 将 writeCode 的实现委托给 JuniorDeveloper 的 writeBadCode 来实现,但 Usage 并没有感知在执行 writeBadCode 方法。

2、UML类图

3、示例代码

Usage.php

writeCode();
 

TeamLead.php

protected  $slave;
 /**
 * 在 构造函数 中注入初级开发者JuniorDeveloper
 * @param JuniorDeveloper $junior
 */
 public function __construct(JuniorDeveloper $junior)
 {
 $this->slave = $junior;
 }
 /**
 * TeamLead 喝咖啡, JuniorDeveloper 工作
 * @return mixed
 */
 public function writeCode()
 {
 return $this->slave->writeBadCode();
 }
}
 

JuniorDeveloper.php


4、测试代码

Tests/DelegationTest.php

assertEquals($junior->writeBadCode(), $teamLead->writeCode());
 }
}
 

收藏
分享
海报
0 条评论
207
上一篇:使用Zephir语言给PHP编写一个C语言扩展 下一篇:js 遍历html表格 获取表格内容

本站已关闭游客评论,请登录或者注册后再评论吧~

忘记密码?

图形验证码