適配器模式 - 設計模式 - PHP版
阿新 • • 發佈:2017-10-26
www 適配器模式 code () inter implement sta nbsp 適配器
1 <?php 2 /* 3 * 適配器模式 4 * 5 * 參考:http://www.cnblogs.com/whoamme/p/3324325.html 6 * 7 */ 8 //目標角色 9 interface Target { 10 public function simpleMethod1(); 11 public function simpleMethod2(); 12 } 13 //源角色 14 class Adaptee { 15 public function myMethod() { 16 echo‘Adapter myMethod‘ . "<br>"; 17 } 18 } 19 //類適配器角色 20 class Adapter implements Target { 21 private $adaptee; 22 function __construct(Adaptee $adaptee) { 23 $this->adaptee = $adaptee; 24 } 25 //委派調用Adaptee的myMethod方法 26 public function simpleMethod1() {27 echo $this->adaptee->myMethod(); 28 } 29 public function simpleMethod2() { 30 echo ‘Adapter simpleMethod2‘ . "<br>"; 31 } 32 } 33 //客戶端 34 class Client { 35 public static function main() { 36 $adaptee = new Adaptee(); 37 $adapter= new Adapter($adaptee); 38 $adapter->simpleMethod1(); 39 $adapter->simpleMethod2(); 40 } 41 } 42 Client::main();
適配器模式 - 設計模式 - PHP版