原文地址:http://www.jianshu.com/p/ef9d5977be7a
适配器模式:将一个类的接口,转换成客户期望的另一个接口。适配器让原本接口不兼容的类可以合作无间。
对于适配器模式,实际上就是一个转接口的概念。比如iphone7的耳塞必须通过转接才能适配,比如水货笔记本的插头必须通过一个转接口才能适配国内的插座等。下面通过代码来具体认识一下适配器模式。
原始接口
public interface OldInterface {
public void oldWay();
}
public class OldWay implements OldInterface{
@Override
public void oldWay() {
System.out.println(
"This is old way.");
}
}
新接口
public interface NewInterface {
public void newWay();
}
使用适配器适配原始接口
public class Adapter implements NewInterface{
OldInterface old;
public Adapter(OldInterface old){
this.old = old;
}
@Override
public void newWay() {
old.oldWay();
}
}
测试
public class Test {
public static void main(String[] args) {
OldWay old =
new OldWay();
Adapter adapter =
new Adapter(old);
adapter.newWay();
}
}
通过上述代码,可以很清晰的理解适配器模式的核心思想。适配器模式大量存在与新旧代码兼容,以及如今的前后端分离中的数据接口对接部分。
转载请注明原文地址: https://ju.6miu.com/read-200224.html