龙盟编程博客 | 无障碍搜索 | 云盘搜索神器
快速搜索
主页 > 软件开发 > JAVA开发 >

JAVA设计模式系列之Adapter(适配器)

时间:2009-12-23 15:42来源:未知 作者:admin 点击:
分享到:
适配器模式定义: 将两个不兼容的类纠合在一起使用,属于结构型模式,需要有Adaptee(被适配者)和Adaptor(适配器)两个身份. 为何使用? 我们经常碰到要将两个没有关系的类组合在一起使用

适配器模式定义:

将两个不兼容的类纠合在一起使用,属于结构型模式,需要有Adaptee(被适配者)和Adaptor(适配器)两个身份.

为何使用?

我们经常碰到要将两个没有关系的类组合在一起使用,第一解决方案是:修改各自类的接口,但是假如我们没有源代码,或者,我们不愿意为了一个应用而修改各自的接口。 怎么办?

使用Adapter,在这两种接口之间创建一个混合接口(混血儿).

如何使用?

实现Adapter方式,其实"think in Java"的"类再生"一节中已经提到,有两种方式:组合(composition)和继续(inheritance).

假设我们要打桩,有两种类:方形桩 圆形桩.

public class SquarePeg{
  public void insert(String str){
  System.out.println("SquarePeg insert():"+str);
  }
  }
  public class RoundPeg{
  public void insertIntohole(String msg){
  System.out.println("RoundPeg insertIntoHole():"+msg);
  }
  }

现在有一个应用,需要既打方形桩,又打圆形桩.那么我们需要将这两个没有关系的类综合应用.假设RoundPeg我们没有源代码,或源代码我们不想修改,那么我们使用Adapter来实现这个应用:

public class PegAdapter extends SquarePeg{
  private RoundPeg roundPeg;
  public PegAdapter(RoundPeg peg)(this.roundPeg=peg;)<
  public void insert(String str){ roundPeg.insertIntoHole(str);}
  }

在上面代码中,RoundPeg属于Adaptee,是被适配者.PegAdapter是Adapter,将Adaptee(被适配者RoundPeg)和Target(目标SquarePeg)进行适配.实际上这是将组合方法(composition)和继续(inheritance)方法综合运用.

PegAdapter首先继续SquarePeg,然后使用new的组合生成对象方式,生成RoundPeg的对象roundPeg,再重载父类insert()方法。从这里,你也了解使用new生成对象和使用extends继续生成对象的不同,前者无需对原来的类修改,甚至无需要知道其内部结构和源代码.

假如你有些Java使用的经验,已经发现,这种模式经常使用。 三层交换技术 交换机与路由器密码恢复 交换机的选购 路由器设置专题 路由故障处理手册 数字化校园网解决方案

进一步使用

上面的PegAdapter是继续了SquarePeg,假如我们需要两边继续,即继续SquarePeg 又继续RoundPeg,因为Java中不答应多继续,但是我们可以实现(implements)两个接口(interface)

public interface IRoundPeg{
  public void insertIntoHole(String msg);
  }
  public interface ISquarePeg{
  public void insert(String str);
  }

下面是新的RoundPeg 和SquarePeg, 除了实现接口这一区别,和上面的没什么区别。

public class SquarePeg implements ISquarePeg{
  public void insert(String str){
  System.out.println("SquarePeg insert():"+str);
  }
  }
  public class RoundPeg implements IRoundPeg{
  public void insertIntohole(String msg){
  System.out.println("RoundPeg insertIntoHole():"+msg);
  }
  }

  
精彩图集

赞助商链接