欢迎您访问程序员文章站本站旨在为大家提供分享程序员计算机编程知识!
您现在的位置是: 首页  >  后端开发

适配器模式,适配器模式java_PHP教程

程序员文章站 2022-05-31 08:46:27
...

适配器模式,适配器模式java

适配器模式

php
//适配器模式-通过适配器去执行第三方方法

//定义目标接口
interface Target{
    public function simpleMethod1();
    public function simpleMethod2();
}

class Adatee{
    public function simpleMethod1(){
        echo 'Adatee simpleMethod1
'; } } //类适配器模式 class Adapter implements Target{ private $adatee; public function __construct(Adatee $adatee){ $this->adatee = $adatee; } public function simpleMethod1(){ echo $this->adatee->simpleMethod1(); } public function simpleMethod2(){ echo $this->adatee->simpleMethod12(); } } //客户端接口 class Client{ public static function main(){ $adapter = new Adapter(new Adatee()); $adapter->simpleMethod1(); } } Client::main();

www.bkjia.comtruehttp://www.bkjia.com/PHPjc/983245.htmlTechArticle适配器模式,适配器模式java 适配器模式 ? php // 适配器模式-通过适配器去执行第三方方法//定义目标接口 interface Target{ public function simpleM...
相关标签: 设计模式