主頁 > 知識(shí)庫 > PHP設(shè)計(jì)模式之適配器模式原理與用法分析

PHP設(shè)計(jì)模式之適配器模式原理與用法分析

熱門標(biāo)簽:地圖標(biāo)注專員怎么樣 四川保險(xiǎn)智能外呼系統(tǒng)供應(yīng)商 遼寧ai電銷機(jī)器人價(jià)格 房產(chǎn)中介用的是什么外呼系統(tǒng) 上海做外呼線路的通信公司 寧波外呼營銷系統(tǒng) 福建銀行智能外呼系統(tǒng)價(jià)格 長沙做地圖標(biāo)注公司 電話機(jī)器人銷售主要負(fù)責(zé)什么

本文實(shí)例講述了PHP設(shè)計(jì)模式之適配器模式原理與用法。分享給大家供大家參考,具體如下:

一、什么是適配器模式

適配器模式有兩種:類適配器模式和對(duì)象適配器模式。其中類適配器模式使用繼承方式,而對(duì)象適配器模式使用組合方式。由于類適配器模式包含雙重繼承,而PHP并不支持雙重繼承,所以一般都采取結(jié)合繼承和實(shí)現(xiàn)的方式來模擬雙重繼承,即繼承一個(gè)類,同時(shí)實(shí)現(xiàn)一個(gè)接口。類適配器模式很簡單,但是與對(duì)象適配器模式相比,類適配器模式的靈活性稍弱。采用類適配器模式時(shí),適配器繼承被適配者并實(shí)現(xiàn)一個(gè)接口;采用對(duì)象適配器模式時(shí),適配器使用被適配者,并實(shí)現(xiàn)一個(gè)接口。

二、什么時(shí)候使用適配器模式

適配器模式的作用就是解決兼容性問題,如果需要通過適配(使用多重繼承或組合)來結(jié)合兩個(gè)不兼容的系統(tǒng),那就使用適配器模式。

三、類適配器模式

以貨幣兌換為例:

?php
/**
*  類適配器模式
*        以貨幣兌換為例
**/
//美元計(jì)算類
class DollarCalc
{
  private $dollar;
  private $product;
  private $service;
  public $rate = 1;
  public function requestCalc($product,$service)
  {
    $this->product = $product;
    $this->service = $service;
    $this->dollar = $this->product + $this->service;
    return $this->requestTotal();
  }
  public function requestTotal()
  {
    $this->dollar *= $this->rate;
    return $this->dollar;
  }
}
//歐元計(jì)算類
class EuroCalc
{
  private $euro;
  private $product;
  private $service;
  public $rate = 1;
  public function requestCalc($product,$service)
  {
    $this->product = $product;
    $this->service = $service;
    $this->euro = $this->product + $this->service;
    return $this->requestTotal();
  }
  public function requestTotal()
  {
    $this->euro *= $this->rate;
    return $this->euro;
  }
}
//歐元適配器接口
interface ITarget
{
  function requester();
}
//歐元適配器實(shí)現(xiàn)
class EuroAdapter extends EuroCalc implements ITarget
{
  public function __construct()
  {
    $this->requester();
  }
  function requester()
  {
    $this->rate = .8111;
    return $this->rate;
  }
}
//客戶類
class Client
{
  private $euroRequest;
  private $dollarRequest;
  public function __construct()
  {
    $this->euroRequest = new EuroAdapter();
    $this->dollarRequest = new DollarCalc();
    $euro = "€";
    echo "Euros: $euro" . $this->makeAdapterRequest($this->euroRequest) . "br />";
    echo "Dollars: $" . $this->makeDollarRequest($this->dollarRequest);
  }
  private function makeAdapterRequest(ITarget $req)
  {
    return $req->requestCalc(40,50);
  }
  private function makeDollarRequest(DollarCalc $req)
  {
    return $req->requestCalc(40,50);
  }
}
$client = new Client();
?>

運(yùn)行結(jié)果:

Euros: €72.999
Dollars: $90

四、對(duì)象適配器模式

以桌面環(huán)境轉(zhuǎn)向移動(dòng)環(huán)境為例:

?php
/**
*  對(duì)象適配器模式
*         從桌面環(huán)境轉(zhuǎn)向移動(dòng)環(huán)境
**/
//桌面布局接口
interface IFormat
{
  public function formatCSS();
  public function formatGraphics();
  public function horizontalLayout();
}
//桌面布局類實(shí)現(xiàn)
class Desktop implements IFormat
{
  public function formatCSS()
  {
    //調(diào)用桌面布局CSS文件
  }
  public function formatGraphics()
  {
    //調(diào)用圖片
  }
  public function horizontalLayout()
  {
    //桌面水平布局
  }
}
//移動(dòng)布局接口
interface IMobileFormat
{
  public function formatCSS();
  public function formatGraphics();
  public function verticalLayout();
}
//移動(dòng)布局類實(shí)現(xiàn)
class Mobile implements IMobileFormat
{
  public function formatCSS()
  {
    //調(diào)用移動(dòng)布局CSS文件
  }
  public function formatGraphics()
  {
    //調(diào)用圖片
  }
  public function verticalLayout()
  {
    //移動(dòng)垂直布局
  }
}
//移動(dòng)布局適配器
class MobileAdapter implements IFormat
{
  private $mobile;
  public function __construct(IMobileFormat $mobile)
  {
    $this->mobile = $mobile;
  }
  public function formatCSS()
  {
    $this->mobile->formatCSS();
  }
  public function formatGraphics()
  {
    $this->mobile->formatGraphics();
  }
  public function horizontalLayout()
  {
    $this->mobile->verticalLayout();
  }
}
//客戶類
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();
  }
}
$client = new Client();
?>

更多關(guān)于PHP相關(guān)內(nèi)容感興趣的讀者可查看本站專題:《php面向?qū)ο蟪绦蛟O(shè)計(jì)入門教程》、《PHP數(shù)組(Array)操作技巧大全》、《PHP基本語法入門教程》、《PHP運(yùn)算與運(yùn)算符用法總結(jié)》、《php字符串(string)用法總結(jié)》、《php+mysql數(shù)據(jù)庫操作入門教程》及《php常見數(shù)據(jù)庫操作技巧匯總》

希望本文所述對(duì)大家PHP程序設(shè)計(jì)有所幫助。

您可能感興趣的文章:
  • PHP設(shè)計(jì)模式之適配器模式(Adapter)原理與用法詳解
  • php設(shè)計(jì)模式 Adapter(適配器模式)
  • PHP設(shè)計(jì)模式之適配器模式代碼實(shí)例
  • 學(xué)習(xí)php設(shè)計(jì)模式 php實(shí)現(xiàn)適配器模式
  • php設(shè)計(jì)模式之適配器模式原理、用法及注意事項(xiàng)詳解
  • PHP設(shè)計(jì)模式之適配器模式定義與用法詳解
  • php設(shè)計(jì)模式之適配器模式實(shí)例分析【星際爭(zhēng)霸游戲案例】
  • PHP設(shè)計(jì)模式(四)原型模式Prototype實(shí)例詳解【創(chuàng)建型】
  • PHP設(shè)計(jì)模式(三)建造者模式Builder實(shí)例詳解【創(chuàng)建型】
  • PHP設(shè)計(jì)模式(一)工廠模式Factory實(shí)例詳解【創(chuàng)建型】
  • PHP設(shè)計(jì)模式概論【概念、分類、原則等】
  • PHP設(shè)計(jì)模式(五)適配器模式Adapter實(shí)例詳解【結(jié)構(gòu)型】

標(biāo)簽:澳門 佛山 深圳 宜春 延安 工商登記 宿遷 常德

巨人網(wǎng)絡(luò)通訊聲明:本文標(biāo)題《PHP設(shè)計(jì)模式之適配器模式原理與用法分析》,本文關(guān)鍵詞  PHP,設(shè)計(jì)模式,之,適配器,;如發(fā)現(xiàn)本文內(nèi)容存在版權(quán)問題,煩請(qǐng)?zhí)峁┫嚓P(guān)信息告之我們,我們將及時(shí)溝通與處理。本站內(nèi)容系統(tǒng)采集于網(wǎng)絡(luò),涉及言論、版權(quán)與本站無關(guān)。
  • 相關(guān)文章
  • 下面列出與本文章《PHP設(shè)計(jì)模式之適配器模式原理與用法分析》相關(guān)的同類信息!
  • 本頁收集關(guān)于PHP設(shè)計(jì)模式之適配器模式原理與用法分析的相關(guān)信息資訊供網(wǎng)民參考!
  • 推薦文章