目的
将类的接口转换成客户希望的另外一个接口。分为类适配器和对象适配器。 类适配器需要借助多继承,对象适配器只是将继承关系改为引用。
代码
php和java均不支持多继承,所以示例代码以对象适配器来。
//需要的接口定义
interface Target{
public function method();
}
//已经存在的类
class Adaptee{
public function method2(){
echo "hello";
}
}
//将method2转化成method
class Apapter implements Target {
private $adaptee;
public function __construct(){
$adaptee = new Adaptee();
}
public function method(){
$this->adaptee->method2();
}
}
PREVIOUSpacman常用命令
NEXT设计模式(7) bridge模式