裝飾模式之變形金剛
(1)抽象構建類Tansform
interface Transform { public function move(); }
final class Car implements Transform { public function __construct() { echo '变形金刚是一辆汽车'; } public function move() { echo '在陆地上移动'; } }(3)抽象裝飾類Changer
class Changer implements Transform { private $transform; public function __construct($tansform='') { $this->transform = $tansform; } public function move() { $this->transform->move(); } }(4)具體裝飾類別Root,Airplane
class Root extends Changer { public function __construct($tansform='') { parent::__construct($tansform); echo '变成机器人'; } public function say() { echo '说话'; } } class Airplane extends Changer { public function __construct($tansform='') { parent::__construct($tansform); echo '变成机飞机'; } public function fly() { echo '在天空飞翔'; } }
$camaro = new Car(); echo '<br>'; $camaro->move(); echo '<br>'; echo '-----------'; echo '<br>'; $bumblebee = new Airplane($camaro); echo '<br>'; $bumblebee->move(); echo '<br>'; $bumblebee->fly(); echo '<br>'; echo '-----------'; echo '<br>'; $bumblebee = new Root($camaro); echo '<br>'; $bumblebee->move(); echo '<br>'; $bumblebee->say();
變形金剛是一輛汽車
在陸地上移動
------------
在陸地上移動
在天空飛翔
-----------
變成機器人
在陸地上移動說話
變成機器人
以上就介紹了php 裝飾模式,包含了面向的內容,希望對PHP教學有興趣的朋友有幫助。