明輝手游網(wǎng)中心:是一個免費提供流行視頻軟件教程、在線學習分享的學習平臺!

設計模式之Adapter(適配器)

[摘要]定義:將兩個不兼容的類糾合在一起使用,這種情況在實際中經(jīng)常出現(xiàn)。 為何使用?我們經(jīng)常碰到要將兩個沒有關系的類組合在一起使用,第一解決方案是:修改各自類的接口,但是如果我們沒有源代碼,或者,我們不愿意為了一個應用而修改各自的接口。 怎么辦? 使用Adapter,在這兩種接口之間創(chuàng)建一個混合接口(混血...
定義:
將兩個不兼容的類糾合在一起使用,這種情況在實際中經(jīng)常出現(xiàn)。

為何使用?
我們經(jīng)常碰到要將兩個沒有關系的類組合在一起使用,第一解決方案是:修改各自類的接口,但是如果我們沒有源代碼,或者,我們不愿意為了一個應用而修改各自的接口。 怎么辦?

使用Adapter,在這兩種接口之間創(chuàng)建一個混合接口(混血兒).

如何使用?
實現(xiàn)Adapter方式,其實"think in Java"的"類再生"一節(jié)中已經(jīng)提到,有兩種方式:組合(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);
}
}

現(xiàn)在有一個應用,已經(jīng)繼承實現(xiàn)了SquarePeg,但是還要實現(xiàn)RoundPeg中的insert()動作,

public class PegAdapter extends SquarePeg{

  private RoundPeg roundPeg;

  public PegAdapter(RoundPeg peg)(this.roundPeg=peg;)

  public void insert(String str){ roundPeg.insertIntoHole(str);}

}

在PegAdapter中,使用組合方式,將RoundPeg對象化,再重載insert()方法?吹竭@里,如果你有些Java的經(jīng)驗,已經(jīng)發(fā)現(xiàn),這種模式經(jīng)常使用。

上面的PegAdapter是繼承了SquarePeg,如果我們需要兩邊繼承,即繼承SquarePeg 又繼承RoundPeg,因為Java中不允許多繼承,但是我們可以實現(xiàn)(implements)兩個接口(interface)

public interface IRoundPeg{
  public void insertIntoHole(String msg);

}

public interface ISquarePeg{
  public void insert(String str);

}

下面是新的RoundPeg 和SquarePeg, 除了實現(xiàn)接口這一區(qū)別,和上面的沒什么區(qū)別。
public class SquarePeg implements IRoundPeg{
  public void insert(String str){
    System.out.println("SquarePeg insert():"+str);
  }

}

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

下面是新的PegAdapter,叫做two-way adapter:

public class PegAdapter implements IRoundPeg,ISquarePeg{

  private RoundPeg roundPeg;
  private SquarePeg squarePeg;

  // 構造方法
  public PegAdapter(RoundPeg peg){this.roundPeg=peg;}
  // 構造方法
  public PegAdapter(SquarePeg peg)(this.squarePeg=peg;)

  public void insert(String str){ roundPeg.insertIntoHole(str);}

}

還有一種叫Pluggable Adapters,可以動態(tài)的獲取幾個adapters中一個。使用Reflection技術,可以動態(tài)的發(fā)現(xiàn)類中的Public方法。