適配器很容易理解, 大多數人家庭都有手機轉接器, 用來爲移動電話充電,這就是一種適配器. 若是隻有USB接頭, 就沒法將移動電話插到標準插座上. 實際上, 必須使用一個適配器, 一端接USB插頭, 一端接插座. 固然, 你能夠拿出電氣工具,改裝USB鏈接頭, 或者從新安裝插座, 不過這樣會帶來不少額外的工做, 並且可能會把鏈接頭或插座弄壞. 因此, 最可取的方法就是找一個適配器. 軟件開發也是如此.php
class ChildClass extends ParentClass implements ISomeAdapter { }
<?php class DollarCalc { private $dollar; private $product; private $service; public $rate = 1; public function requestCalc($productNow, $serviceNow) { $this->product = $productNow; $this->service = $serviceNow; $this->dollar = $this->product + $this->service; return $this->requestTotal(); } public function requestTotal() { $this->dollar *= $this->rate; return $this->dollar; } }
<?php class EuroCalc { private $euro; private $product; private $service; public $rate = 1; public function requestCalc($productNow, $serviceNow) { $this->product = $productNow; $this->service = $serviceNow; $this->euro = $this->product + $this->service; return $this->requestTotal(); } public function requestTotal() { $this->euro *= $this->rate; return $this->euro; } }
<?php interface ITarget { public function requester(); }
<?php include_once('EuroCalc.php'); include_once('ITarget.php'); class EuroAdapter extends EuroCalc implements ITarget { public function __construct() { $this->requester(); } public function requester() { $this->rate = 0.8111; return $this->rate; } }
<?php include_once('EuroAdapter.php'); include_once('DollarCalc.php'); class Client { public function __construct() { $euro = '€'; echo "區元: $euro" . $this->makeApapterRequest(new EuroAdapter()) . '<br />'; echo "美圓: $: " . $this->makeDollarRequest(new DollarCalc()) . '<br />'; } private function makeApapterRequest(ITarget $req) { return $req->requestCalc(40,50); } private function makeDollarRequest(DollarCalc $req) { return $req->requestCalc(40,50); } } $woker = new Client();
運行結果以下:css
Euros: €72.999 Dollars: $: 90
<?php interface IFormat { public function formatCSS(); public function formatGraphics(); public function horizontalLayout(); }
<?php include_once('IFormat.php'); class Desktop implements IFormat { public function formatCSS() { echo "引用desktop.css<br />"; } public function formatGraphics() { echo "引用desktop.png圖片<br />"; } public function horizontalLayout() { echo '桌面:水平佈局'; } }
<?php interface IMobileFormat { public function formatCSS(); public function formatGraphics(); public function verticalLayout(); }
<?php include_once('IMobileFormat.php'); class Mobile implements IMobileFormat { public function formatCSS() { echo "引用mobile.css<br />"; } public function formatGraphics() { echo "引用mobile.png圖片<br />"; } public function verticalLayout() { echo '移動端:垂直佈局'; } }
<?php include_once('IFormat.php'); include_once('Mobile.php'); class MobileAdapter implements IFormat { private $mobile; public function __construct(IMobileFormat $mobileNow) { $this->mobile = $mobileNow; } public function formatCSS() { $this->mobile->formatCSS(); } public function formatGraphics() { $this->mobile->formatGraphics(); } public function horizontalLayout() { $this->mobile->verticalLayout(); } }
<?php include_once('Mobile.php'); include_once('MobileAdapter.php'); class Client { private $mobile; private $mobileAdapter; public function __construct() { $this->mobile = new Mobile(); $this->mobileAdapter = new MobileAdapter($this->mobile); $this->mobileAdapter->formatCSS(); $this->mobileAdapter->formatGraphics(); $this->mobileAdapter->horizontalLayout(); } } $worker = new Client();