博客
关于我
强烈建议你试试无所不能的chatGPT,快点击我
PHP常见设计模式简单实现
阅读量:6279 次
发布时间:2019-06-22

本文共 1357 字,大约阅读时间需要 4 分钟。

name = $name; } public function eat(){ echo $this->name."吃钣"; }}class Mother implements Person{ private $baby; public function __construct($baby){ $this->baby = $baby; } private function eatBefor(){ echo "吃之前"; } private function eatAfter(){ echo "吃之后"; } public function eat(){ $this->eatBefor(); $this->baby->eat(); $this->eatAfter(); }}//适配器模式interface TypeA{ public function insert();}interface TypeB{ public function connect();}class TypeAimpl implements TypeA{ public function insert(){ echo "Start insert
"; }}class TypeBimpl implements TypeB{ public function connect(){ echo "Start connect
"; }}class createA{ private $typeA; public function __construct($typeA){ $this->typeA = $typeA; } public function dotypeA(){ echo "other...things
"; $this->typeA->insert(); }}class Adapter implements TypeA{ private $typeB; public function __construct($typeB){ $this->typeB = $typeB; } public function insert(){ $this->typeB->connect(); }}$typeAimpl = new TypeAimpl();$typeBimpl = new TypeBimpl();$Adapter = new Adapter($typeBimpl);$createA = new createA($typeAimpl);$createB = new createA($Adapter);$createA->dotypeA();$createB->dotypeA();

 

转载于:https://www.cnblogs.com/yuliang8/p/6604853.html

你可能感兴趣的文章
闲扯下午引爆乌云社区“盗窃”乌云币事件
查看>>
02@在类的头文件中尽量少引入其他头文件
查看>>
JAVA IO BIO NIO AIO
查看>>
input checkbox 复选框大小修改
查看>>
网吧维护工具
查看>>
BOOT.INI文件参数
查看>>
vmstat详解
查看>>
新年第一镖
查看>>
unbtu使用笔记
查看>>
OEA 中 WPF 树型表格虚拟化设计方案
查看>>
Android程序开发初级教程(一) 开始 Hello Android
查看>>
使用Gradle打RPM包
查看>>
“我意识到”的意义
查看>>
淘宝天猫上新辅助工具-新品填表
查看>>
再学 GDI+[43]: 文本输出 - 获取已安装的字体列表
查看>>
nginx反向代理
查看>>
操作系统真实的虚拟内存是什么样的(一)
查看>>
hadoop、hbase、zookeeper集群搭建
查看>>
python中一切皆对象------类的基础(五)
查看>>
modprobe
查看>>