当前位置:首页 > PHP教程 > php高级应用 > 列表

PHP设计模式装饰器模式实例

发布:smiling 来源: PHP粉丝网  添加日期:2016-07-27 13:28:21 浏览: 评论:0 

php面向对象的设计模式中有很多种模式了,今天我们为各位介绍的是装饰器模式的一个学习笔记了,有需要了解php装饰器模式的朋友可以和小编来看看。

我们在使用面向对象的日常开发过程中,或许会碰见需要对某个方法或者某个对象,添加新的行为。然而常见的做法是,写一个子类继承需要改写的类,然后去重新实现类的方法。

但是装饰器模式(Decorator),可以动态地添加修改类的功能,在使用装饰器模式,仅需在运行时添加一个装饰器对象既可实现,相对与生成子类更加的灵活。

在我们需要改写一个类的时候通常的做法是采用继承的方式来重新方法,如下代码:

  1. /* 
  2.  * 比如我们需要改写一串字符串的样式,采用继承的写法。 
  3.  */ 
  4. class Canvas { 
  5.     function draw($width = 20, $height = 10) { 
  6.         for($i = 0; $i < $height$i++) { 
  7.             for($j = 0; $j < $width$j++) { 
  8.                 echo '*'
  9.             } 
  10.             echo '<br/>'
  11.          } //phpfensi.com 
  12.      } 
  13. class Canvas2 extends Canvas { 
  14.     function draw($width = 20, $height = 10) { 
  15.         echo "<div style='color: red;'>"
  16.         parent::draw($width$height); 
  17.         echo "</div>"
  18.     } 
  19. $Canvas2 = new Canvas2(); 
  20. $Canvas2->draw(); 

对于上面的这种写法,假如我们需要多增加一个一种样式就需要多一个继承。接下来使用装饰器模式(Decorator)就会方便很多。

  1. /* 
  2.  
  3.  * 首先声明一个装饰器的接口 
  4.  
  5.  */ 
  6.  
  7. interface DrawDecorator { 
  8.  
  9.     function beforeDraw(); 
  10.  
  11.     function afterDraw(); 
  12.  

接下来再分别添加两个装饰类,来继承接口,实现接口中的方法:

  1. /* 
  2.  * 颜色装饰 
  3.  */ 
  4. class ColorDrawDecorator implements DrawDecorator { 
  5.     protected $color
  6.     function __construct($color = 'red') { 
  7.         $this->color = $color
  8.     } 
  9.     function beforeDraw() { 
  10.         echo "<div style='color: {$this->color};'>"
  11.     } 
  12.     function afterDraw() { 
  13.         echo "</div>"
  14.     } 
  15. /* 
  16.  * 字体大小装饰 
  17.  */ 
  18. class SizeDrawDecorator implements DrawDecorator { 
  19.     protected $size
  20.     function __construct($size = '14px') { 
  21.         $this->size = $size
  22.     } 
  23.     function beforeDraw() { 
  24.         echo "<div style='font-size: {$this->size};'>"
  25.     } 
  26.     function afterDraw() { 
  27.         echo "</div>"
  28.     } 

接下来就是使用我们前面所创建的装饰类:

  1. /* 
  2.  * 创建一个画布类 
  3.  */ 
  4. class Canvas { 
  5.     protected $decorators = array(); //用来存放装饰的数组 
  6.     function draw($width = 20, $height = 10) { 
  7.         $this->beforeDraw(); 
  8.         for($i = 0; $i < $height$i++) { 
  9.             for($j = 0; $j < $width$j++) 
  10.             { 
  11.                 echo '*'
  12.             } 
  13.             echo '<br/>'
  14.         } 
  15.         $this->afterDraw(); 
  16.     } 
  17.     //添加装饰器的方法 
  18.     function addDecorator(DrawDecorator $decorator) { 
  19.         $this->decorators[] = $decorator
  20.     } 
  21.     function beforeDraw() { 
  22.         foreach($this->decorators as $decorator) { 
  23.             $decorator->beforeDraw(); 
  24.         } 
  25.     } 
  26.     function afterDraw() { 
  27.         $decorators = array_reverse($this->decorators); 
  28.         foreach($decorators as $decorator) { 
  29.             $decorator->afterDraw(); 
  30.         } 
  31.     } 
  32. $Canvas = new Canvas(); 
  33. $Canvas->addDecorator(new ColorDrawDecorator('red')); 
  34. $Canvas->addDecorator(new SizeDrawDecorator('9px')); 
  35. $Canvas->draw(20, 10);

Tags: 设计模式 PHP实例 PHP模式

分享到: