PHP设计模式(九)外观模式Facade实例详解【结构型】
副标题[/!--empirenews.page--]
外观模式,我们通过外观的包装,使应用程序只能看到外观对象,而不会看到具体的细节对象,这样无疑会降低应用程序的复杂度,并且提高了程序的可维护性。 为了降低复杂性,常常将系统划分为若干个子系统。但是如何做到各个系统之间的通信和相互依赖关系达到最小呢? 3. 解决方案外观模式:为子系统中的一组接口提供一个一致的界面, Facade模式定义了一个高层接口,这个接口使得这一子系统更加容易使用。引入外观角色之后,用户只需要直接与外观角色交互,用户与子系统之间的复杂关系由外观角色来实现,从而降低了系统的耦合度。 4. 适用性 在遇到以下情况使用facade模式: 6.构建模式的组成 外观角色(Facade):是模式的核心,他被客户client角色调用,知道各个子系统的功能。同时根据客户角色已有的需求预订了几种功能组合 Facade模式有下面一些优点: 1)对客户屏蔽子系统组件,减少了客户处理的对象数目并使得子系统使用起来更加容易。通过引入外观模式,客户代码将变得很简单,与之关联的对象也很少。 我们使用开关的例子; <?php /** * 外观模式 * */ class SwitchFacade { private $_light = null; //电灯 private $_ac = null; //空调 private $_fan = null; //电扇 private $_tv = null; //电视 public function __construct() { $this->_light = new Light(); $this->_fan = new Fan(); $this->_ac = new AirConditioner(); $this->_tv = new Television(); } /** * 晚上开电灯 * */ public function method1($isOpen =1) { if ($isOpen == 1) { $this->_light->on(); $this->_fan->on(); $this->_ac->on(); $this->_tv->on(); }else{ $this->_light->off(); $this->_fan->off(); $this->_ac->off(); $this->_tv->off(); } } /** * 白天不需要电灯 * */ public function method2() { if ($isOpen == 1) { $this->_fan->on(); $this->_ac->on(); $this->_tv->on(); }else{ $this->_fan->off(); $this->_ac->off(); $this->_tv->off(); } } } /******************************************子系统类 ************/ /** * */ class Light { private $_isOpen = 0; public function on() { echo 'Light is open', '<br/>'; $this->_isOpen = 1; } public function off() { echo 'Light is off', '<br/>'; $this->_isOpen = 0; } } class Fan { private $_isOpen = 0; public function on() { echo 'Fan is open', '<br/>'; $this->_isOpen = 1; } public function off() { echo 'Fan is off', '<br/>'; $this->_isOpen = 0; } } class AirConditioner { private $_isOpen = 0; public function on() { echo 'AirConditioner is open', '<br/>'; $this->_isOpen = 1; } public function off() { echo 'AirConditioner is off', '<br/>'; $this->_isOpen = 0; } } class Television { private $_isOpen = 0; public function on() { echo 'Television is open', '<br/>'; $this->_isOpen = 1; } public function off() { echo 'Television is off', '<br/>'; $this->_isOpen = 0; } } /** * 客户类 * */ class client { static function open() { $f = new SwitchFacade(); $f->method1(1); } static function close() { $f = new SwitchFacade(); $f->method1(0); } } client::open(); 11. 与其他相关模式(编辑:厦门网) 【声明】本站内容均来自网络,其相关言论仅代表作者个人观点,不代表本站立场。若无意侵犯到您的权利,请及时与联系站长删除相关内容! |