适配器模式

1、概念

将一个类的接口转换成客户希望的另外一个接口,使得原本由于接口不兼容而不能一起工作的那些类能一起工作。参考DispatcherServlet.doDispatch里getHandlerAdapter。
优点:

  • 客户端通过适配器可以透明地调用目标接口。
  • 复用了现存的类,程序员不需要修改原有代码而重用现有的适配者类。
  • 将目标类和适配者类解耦,解决了目标类和适配者类接口不一致的问题。
  • 在很多业务场景中符合开闭原则。
    缺点:
  • 适配器编写过程需要结合业务场景全面考虑,可能会增加系统的复杂性。
  • 增加代码阅读难度,降低代码可读性,过多使用适配器会使系统代码变得凌乱。

2、实现

适配器模式(Adapter)包含以下主要角色:

  • 目标(Target)接口:当前系统业务所期待的接口,它可以是抽象类或接口。
  • 适配者(Adaptee)类:它是被访问和适配的现存组件库中的组件接口。
  • 适配器(Adapter)类:它是一个转换器,通过继承或引用适配者的对象,把适配者接口转换成目标接口,让客户按目标接口的格式访问适配者。

适配器有三种实现方式

  • 类适配器模式:通过继承适配者类,实现目标类实现。
  • 对象适配器模式:实现目标类,组合适配者类实现,降低了适配器与适配者之间的耦合。
  • 接口适配器模式:借助中间抽象类,默认实现目标接口所有方法(可以是空实现),适配器继承抽象类,选择性重写方法。

类适配器模式
在这里插入图片描述

package com.mine.design.adapter.classadapter;

public interface Target {
	void output();
}
package com.mine.design.adapter.classadapter;

public class Adaptee {
	public void input() {
		System.out.println("适配器输入内容");
	}
}
package com.mine.design.adapter.classadapter;

public class Adapter extends Adaptee implements Target {

	public void output() {
		this.input();
		System.out.println("输出内容");
	}

}
package com.mine.design.adapter.classadapter;

public class Client {

	public static void main(String[] args) {
		Target t = new Adapter();
		t.output();
	}

}

对象适配器
在这里插入图片描述

package com.mine.design.adapter.objadapter;

public interface Target {
	void output();
}
package com.mine.design.adapter.objadapter;

public class Adaptee {
	public void input() {
		System.out.println("适配器输入内容");
	}
}
package com.mine.design.adapter.objadapter;

public class Adapter implements Target {
	private Adaptee adaptee;
	
	public Adapter(Adaptee adaptee) {
		this.adaptee = adaptee;
	}

	public void output() {
		this.adaptee.input();
		System.out.println("输出内容");
	}

}
package com.mine.design.adapter.objadapter;

public class Client {

	public static void main(String[] args) {
		Target t = new Adapter(new Adaptee());
		t.output();
	}

}

接口适配器
在这里插入图片描述

package com.mine.design.adapter.interfaceadapter;

public interface Target {
	void output();
	void output2();
	void output3();
}
package com.mine.design.adapter.interfaceadapter;

public abstract class AbsTarget implements Target {

	public void output() {
		System.out.println("output默认实现");
	}

	public void output2() {
		System.out.println("output2默认实现");
	}

	public void output3() {
		System.out.println("output3默认实现");
	}

}
package com.mine.design.adapter.interfaceadapter;

public class Adaptee {
	public void input() {
		System.out.println("适配器输入内容");
	}
}
package com.mine.design.adapter.interfaceadapter;

public class Adapter extends AbsTarget {
	private Adaptee adaptee;
	
	public Adapter(Adaptee adaptee) {
		this.adaptee = adaptee;
	}

	public void output() {
		this.adaptee.input();
		System.out.println("输出内容");
	}

}
package com.mine.design.adapter.interfaceadapter;

public class Client {

	public static void main(String[] args) {
		Target t = new Adapter(new Adaptee());
		t.output();
		t.output2();
		t.output3();
	}

}
评论
添加红包

请填写红包祝福语或标题

红包个数最小为10个

红包金额最低5元

当前余额3.43前往充值 >
需支付:10.00
成就一亿技术人!
领取后你会自动成为博主和红包主的粉丝 规则
hope_wisdom
发出的红包
实付
使用余额支付
点击重新获取
扫码支付
钱包余额 0

抵扣说明:

1.余额是钱包充值的虚拟货币,按照1:1的比例进行支付金额的抵扣。
2.余额无法直接购买下载,可以购买VIP、付费专栏及课程。

余额充值