码迷,mamicode.com
首页 > Web开发 > 详细

PHP设计模式 - 装饰器模式

时间:2018-06-25 22:53:08      阅读:212      评论:0      收藏:0      [点我收藏+]

标签:nbsp   opera   protect   extends   abs   运行   UNC   设计   bst   

装饰器模式允许我们根据运行时不同的情景动态地为某个对象调用前后添加不同的行

<?php
interface Component {
    public function operation();
}

abstract class Decorator implements Component{ // 装饰角色 
    protected  $_component;
    public function __construct(Component $component) {
        $this->_component = $component;
    }
    public function operation() {
        $this->_component->operation();
    }
}

class ConcreteDecoratorA extends Decorator { // 具体装饰类A
    public function __construct(Component $component) {
        parent::__construct($component);
    } 
    public function operation() {
        parent::operation();    //  调用装饰类的操作
        $this->addedOperationA();   //  新增加的操作
    }
    public function addedOperationA() {echo ‘A加点酱油;‘;}
}

class ConcreteDecoratorB extends Decorator { // 具体装饰类B
    public function __construct(Component $component) {
        parent::__construct($component);
    } 
    public function operation() {
        parent::operation();
        $this->addedOperationB();
    }
    public function addedOperationB() {echo "B加点辣椒;";}
}

class ConcreteComponent implements Component{ //具体组件类
    public function operation() {} 
}

// clients
$component = new ConcreteComponent();
$decoratorA = new ConcreteDecoratorA($component);
$decoratorB = new ConcreteDecoratorB($decoratorA);

$decoratorA->operation();//输出:A加点酱油;
echo ‘<br>--------<br>‘;
$decoratorB->operation();//输出:A加点酱油;B加点辣椒;
?>

 

PHP设计模式 - 装饰器模式

标签:nbsp   opera   protect   extends   abs   运行   UNC   设计   bst   

原文地址:https://www.cnblogs.com/taozi32/p/9226546.html

(0)
(0)
   
举报
评论 一句话评论(0
登录后才能评论!
© 2014 mamicode.com 版权所有  联系我们:gaon5@hotmail.com
迷上了代码!