适配器模式2-对象的适配器模式

       与类的适配器模式一样,对象的适配器模式吧被适配的类的api转换成目标类的api,但是与类的适配器模式不同的是,对象的适配器模式是使用的委派关系连接到adaptee类。

模式所涉及的角色如下:

1:目标(Target):这是所期待的接口,可以是具体的类,也可以是抽象类

2:源(adaptee):需要适配的接口

3:适配器:是该模式的核心,适配器把源和目标结合起来,这个角色必须是具体类。

代码和测试如下:

public interface Target
{
void sampleOption1();
void sampleOption2();
}

//

public class Adaptee
{
public void sampleOption1()
{
System.out.println("========Adaptee===++===sampleOption1()=====");
}
}

//


public class Adapter implements Target
{
private Adaptee adaptee;

public Adapter(Adaptee adaptee)
{
this.adaptee = adaptee;
}

@Override
public void sampleOption1()
{
// TODO Auto-generated method stub
adaptee.sampleOption1();
}

@Override
public void sampleOption2()
{
// TODO Auto-generated method stub

}

}

//

public static void main(String[] args)
{
Adaptee adaptee=new Adaptee();
Target target=new Adapter(adaptee);
target.sampleOption1();
}
}

你可能感兴趣的:(适配器模式,java模式之一)