<?php /** **適配器模式:將需要把一類對(duì)象轉(zhuǎn)化成另一類對(duì)象 **把源接口轉(zhuǎn)化為目標(biāo)接口 **適用范圍:1.存在一個(gè)類,你想應(yīng)用,接口卻不是你想要的 **2. ****/ //目標(biāo)接口 interface Target{ public function simpleFunction1(); public function simpleFunction2(); } //源接口 class Adaptee{ public function simpleFunction1(){ echo 'simpleFunction1'; } } //適配器類 class Adapter implements Target{ private $adaptee; public function __construct(Adaptee $adaptee){ $this->adaptee=$adaptee; } public function simpleFunction1(){ echo $this->adaptee->simpleFunction1(); } public function simpleFunction2(){ echo 'Adapter Simple '; } } class client{ public static function main(){ $adaptee = new Adaptee(); $adapter = new Adapter($adaptee); $adapter->simpleFunction1(); $adapter->simpleFunction2(); } } client::main();
本文題目:設(shè)計(jì)模式之----------適配器模式
網(wǎng)站網(wǎng)址:http://aaarwkj.com/article42/gjdohc.html
成都網(wǎng)站建設(shè)公司_創(chuàng)新互聯(lián),為您提供微信小程序、網(wǎng)頁設(shè)計(jì)公司、企業(yè)建站、外貿(mào)建站、面包屑導(dǎo)航、網(wǎng)站設(shè)計(jì)公司
聲明:本網(wǎng)站發(fā)布的內(nèi)容(圖片、視頻和文字)以用戶投稿、用戶轉(zhuǎn)載內(nèi)容為主,如果涉及侵權(quán)請(qǐng)盡快告知,我們將會(huì)在第一時(shí)間刪除。文章觀點(diǎn)不代表本網(wǎng)站立場(chǎng),如需處理請(qǐng)聯(lián)系客服。電話:028-86922220;郵箱:631063699@qq.com。內(nèi)容未經(jīng)允許不得轉(zhuǎn)載,或轉(zhuǎn)載時(shí)需注明來源: 創(chuàng)新互聯(lián)