php设计模式 Bridge (桥接模式)_PHP

WBOY
发布: 2016-06-01 12:15:57
原创
822 人浏览过
复制代码代码如下:
/**
* 桥接模式
*
* 将抽象部份与它实现部分分离,使用它们都可以有独立的变化
*/
抽象类Implementor
{
抽象公共函数操作();
}
class ConcreteImplementorA extends Implementor
{
公共函数操作()
{
echo "ConcreteImplementorA 操作
";
}
}
class ConcreteImplementorB extends Implementor
{
公共函数操作()
{
echo "ConcreteImplementorB 操作
";
}
}
类抽象
{
protected $_implementor = null;
public function setImplementor($implementor)
{
$this->_implementor = $implementor;
}
公共函数操作()
{
$this->_implementor->操作();
}
}
class RefinedAbstraction 扩展 Abstraction
{
}
class ExampleAbstraction 扩展 Abstraction
{
}
//
$objRAbstraction = new精炼抽象();
$objRAbstraction->setImplementor(new ConcreteImplementorB());
$objRAbstraction->操作();
$objRAbstraction->setImplementor(new ConcreteImplementorA());
$objRAbstraction->操作();
$objEAbstraction = new ExampleAbstraction();
$objEAbstraction->setImplementor(new ConcreteImplementorB());
$objEAbstraction->操作();
相关标签:
来源:php.cn
本站声明
本文内容由网友自发贡献,版权归原作者所有,本站不承担相应法律责任。如您发现有涉嫌抄袭侵权的内容,请联系admin@php.cn
最新问题
热门教程
更多>
最新下载
更多>
网站特效
网站源码
网站素材
前端模板