>php教程 >php手册 >php设计模式 adapter (适配器模式)

php设计模式 adapter (适配器模式)

WBOYWBOYWBOYWBOYWBOYWBOYWBOYWBOYWBOYWBOYWBOYWBOYWB
WBOYWBOYWBOYWBOYWBOYWBOYWBOYWBOYWBOYWBOYWBOYWBOYWB원래의
2016-05-21 10:39:421394검색

25种php设计模式,你全都知道吗?下面用代码介绍适配器模式(adapter模式)

<?php
/**
 * 适配器模式
 *
 * 将一个类的接口转换成客户希望的另外一个接口,使用原本不兼容的而不能在一起工作的那些类可以在一起工作
 */
// 这个是原有的类型
class OldCache {
    public function __construct() {
        echo "OldCache construct<br/>";
    }
    public function store($key, $value) {
        echo "OldCache store<br/>";
    }
    public function remove($key) {
        echo "OldCache remove<br/>";
    }
    public function fetch($key) {
        echo "OldCache fetch<br/>";
    }
}
interface Cacheable {
    public function set($key, $value);
    public function get($key);
    public function del($key);
}
class OldCacheAdapter implements Cacheable {
    private $_cache = null;
    public function __construct() {
        $this->_cache = new OldCache();
    }
    public function set($key, $value) {
        return $this->_cache->store($key, $value);
    }
    public function get($key) {
        return $this->_cache->fetch($key);
    }
    public function del($key) {
        return $this->_cache->remove($key);
    }
}
$objCache = new OldCacheAdapter();
$objCache->set("test", 1);
$objCache->get("test");
$objCache->del("test", 1);


其他相关设计模式:

http://www.phprm.com/develop/memento.html 备忘录模式(Memento模式)
http://www.phprm.com/develop/observer.html 观察者模式(Observer模式)
http://www.phprm.com/develop/template.html 模板方法模式(Template Method模式)
http://www.phprm.com/develop/command.html 命令模式(command模式)
http://www.phprm.com/develop/composite.html 组合模式(composite模式)
http://www.phprm.com/develop/flyweight.html 享元模式(flyweight模式)
http://www.phprm.com/develop/strategy.html 策略模式(strategy模式)
http://www.phprm.com/develop/state.html 状态模式(state模式)
http://www.phprm.com/develop/adapter.html 适配器模式(adapter模式)
http://www.phprm.com/develop/factory.html 工厂模式(factory模式)
http://www.phprm.com/develop/prototype.html 原型模式(prototype模式)
http://www.phprm.com/develop/facade.html 外观模式(facade模式)
http://www.phprm.com/develop/singleton.html 单例模式(singleton模式)
http://www.phprm.com/develop/bridge.html 桥梁模式(bridge模式)
http://www.phprm.com/develop/decorator.html 装饰模式(decorator模式)
http://www.phprm.com/develop/abstract.html 抽象工厂模式(abstract factory模式)
http://www.phprm.com/develop/builder.html 建造者模式(Builder模式)
http://www.phprm.com/develop/visitor.html 访问者模式(Visitor模式)
http://www.phprm.com/develop/interpreter.html 解释器模式(Interpreter模式)
http://www.phprm.com/develop/mediator.html 中介者模式(Mediator模式)
http://www.phprm.com/develop/chain.html 职责链模式(Chain Of Responsibility模式)
http://www.phprm.com/develop/proxy.html 代理模式(Proxy模式)
http://www.phprm.com/develop/interator.html 迭代器模式(Interator模式)
http://www.phprm.com/develop/dao.html 数据访问对象模式(DAO模式)
http://www.phprm.com/develop/delegation.html 委托模式(Delegation模式)


本文地址:http://www.phprm.com/develop/adapter.html

转载随意,但请附上文章地址:-)

성명:
본 글의 내용은 네티즌들의 자발적인 기여로 작성되었으며, 저작권은 원저작자에게 있습니다. 본 사이트는 이에 상응하는 법적 책임을 지지 않습니다. 표절이나 침해가 의심되는 콘텐츠를 발견한 경우 admin@php.cn으로 문의하세요.