码迷,mamicode.com
首页 > 其他好文 > 详细

设计模式-装饰者模式

时间:2015-03-07 15:23:07      阅读:125      评论:0      收藏:0      [点我收藏+]

标签:

 

 

<?php

/**
 * 装饰者模式
 * 动态的为对象增加职责
 */
interface Drink {

    public function cost();
}

class Coffee implements Drink {

    public function cost() {
        return 10;
    }

}

abstract class Drink_Decorator implements Drink {

    protected $drink;

    public function __construct($drink) {
        $this->drink = $drink;
    }

}

class Sugar extends Drink_Decorator {

    public function cost() {
        return $this->drink->cost() + 6;
    }

}

class Milk extends Drink_Decorator {

    public function cost() {
        return $this->drink->cost() + 7;
    }

}

$coffee = new Coffee();


$coffee = new Sugar($coffee);

$coffee = new Milk($coffee);

echo $coffee->cost();

这个例子,估计看过设计模式的人都太熟悉了

 

来个项目案例

 

待续

设计模式-装饰者模式

标签:

原文地址:http://www.cnblogs.com/bai-jimmy/p/4320229.html

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