/** * 客戶須要的接口 */ public interface Target { void request(); } /** * 被適配的類 */ public class Adaptee { public void adapteeRequest () { System.out.println("被適配者的方法"); } } /** * 適配器,繼承了被適配的類,而且實現了Target定義的接口 */ public class Adapter extends Adaptee implements Target { @Override public void request() { //todo... System.out.println("適配後----"); super.adapteeRequest(); //todo... } }
/** * 測試類 */ public class Test { public static void main(String[] args) { Adaptee adaptee = new Adaptee(); adaptee.adapteeRequest(); Target adapterTarget = new Adapter(); adapterTarget.request(); } }
被適配者的方法 適配後---- 被適配者的方法
/** * 客戶端應用放使用的接口 */ public interface Target { void request(); } /** * 被適配的類 */ public class Adaptee { public void adapteeRequest () { System.out.println("被適配者的方法"); } } /** * 適配器模式 */ public class Adapter implements Target { /** * 組合了被適配的類,這裏能夠經過set方式注入 */ private Adaptee adaptee = new Adaptee(); @Override public void request() { //todo... System.out.println("適配後----"); adaptee.adapteeRequest(); //todo... } }
/** * 應用測試類 */ public class Test { public static void main(String[] args) { Adaptee adaptee = new Adaptee(); adaptee.adapteeRequest(); Target adapterTarget = new Adapter(); adapterTarget.request(); } }
被適配者的方法 適配後---- 被適配者的方法
從上面兩種狀況能夠看出,適配器模式一共有三個角色html
筆記本的插頭爲三項電,而現有的插座是兩項的,須要適配器來進行適配,下面分別進行兩種方式的實現。
/** * 三項插座接口 * @author Administrator * */ public interface ThreePlugIf { //使用三項電流供電 void powerWithThree(); } /** * 二項電插座 */ public class GBTowPlug { //使用二項電流供電 public void powerWithTwo () { System.out.println("使用二項電流供電"); } } /** * 筆記本類 */ public class NoteBook { private ThreePlugIf plug; /** * 只接收使用三項電充電 * @param plug */ public NoteBook (ThreePlugIf plug) { this.plug = plug; } /** * 使用插座充電 */ public void charge () { plug.powerWithThree(); } }
/** * 採用繼承方式的插座適配器 * @author Administrator */ public class TwoPlugAdapterExtends extends GBTowPlug implements ThreePlugIf { public void powerWithThree() { System.out.println("藉助繼承適配器"); this.powerWithTwo(); } }
/** * 測試與應用類 */ public class AdapterTest { public static void main(String[] args) { ThreePlugIf three = new TwoPlugAdapterExtends(); NoteBook book = new NoteBook(three); book.charge(); } }
藉助繼承適配器 使用二項電流供電
/** * 二項插座轉三項插座的適配器 */ public class TwoPlugAdapter implements ThreePlugIf { /** * 組合 */ private GBTowPlug plug; public TwoPlugAdapter (GBTowPlug plug) { this.plug = plug; } public void powerWithThree() { System.out.println("經過轉化"); plug.powerWithTwo(); } }
/** * 測試與應用類 */ public class AdapterTest { public static void main(String[] args) { GBTowPlug two = new GBTowPlug(); ThreePlugIf three = new TwoPlugAdapter(two); NoteBook book = new NoteBook(three); book.charge(); } }
對象適配器-經過轉化 使用二項電流供電
適配器模式和外觀模式java
慕課網設計模式精講
: https://coding.imooc.com/class/270.html 設計模式:適配器模式
: http://www.javashuo.com/article/p-nzylqhic-bt.html