适配器模式的运用

简介: 适配器模式的运用

一、适配器模式的运用

1.1 介绍

将一个类的接口转换成客户希望的另外一个接口,使得原本由于接口不兼容而不能一起工作的那些类能一起工作。

例子:手机充电器(将220v转换为65v的电压),读卡器,笔记本电脑的充电器等,其实就是使用到了适配器模式。

1.2 适配器模式结构

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

1.3 类适配器模式

实现方式:定义一个适配器类来实现当前系统的业务接口,同时又继承现有组件库中已经存在的组件。

1.3.1 类适配器模式类图

现有一台电脑只能读取SD卡,而要读取TF卡中的内容的话就需要使用到适配器模式。创建一个读卡器,将TF卡中的内容读取出来。

1.3.2 代码

类适配器模式违背了合成复用原则。类适配器是客户类有一个接口规范的情况下可用,反之不可用。

/**
 * 适配者类的接口
 */
public interface TFCard {
    // 从TF卡中读取数据
    String readTF();
    // 往TF卡中写数据
    void writeTF(String msg);
}
/**
 * 适配者类
 */
public class TFCardImpl implements TFCard {
    public String readTF() {
        String msg = "TFCard read msg : I am TFcard";
        return msg;
    }
    public void writeTF(String msg) {
        System.out.println("TFCard write msg :" + msg);
    }
}
/**
 * 目标接口
 */
public interface SDCard {
    // 从SD卡中读取数据
    String readSD();
    // 往SD卡中写数据
    void writeSD(String msg);
}
/**
 * 具体的SD卡
 */
public class SDCardImpl implements SDCard {
    public String readSD() {
        String msg = "SDCard read msg :I am SD";
        return msg;
    }
    public void writeSD(String msg) {
        System.out.println("SDCard write msg :" + msg);
    }
}
/**
 * 适配器类
 */
public class SDAdapterTF extends TFCardImpl implements SDCard {
    public String readSD() {
        System.out.println("adapter read tf card...");
        return readTF();
    }
    public void writeSD(String msg) {
        System.out.println("adapter write tf card...");
        writeTF(msg);
    }
}
/**
 * 电脑类读取SD卡
 */
public class Computer {
    // 从SD卡中读取数据
    public String readSD(SDCard sdCard) {
        if(sdCard == null) {
            throw  new NullPointerException("读卡错误,请检查SD卡是否插入");
        }
        return sdCard.readSD();
    }
}
/**
 * 客户:Client
 */
public class Client {
    public static void main(String[] args) {
        // 创建电脑对象
        Computer computer = new Computer();
        // 未定义适配器类,电脑只能读取SD卡中的数据
        String msg = computer.readSD(new SDCardImpl());
        System.out.println(msg);
        // 定义适配器类,使用该电脑读取TF卡中的数据
        String msg1 = computer.readSD(new SDAdapterTF());
        System.out.println(msg1);
    }
}
// 输出结果:
// SDCard read msg :I am SD
// adapter read tf card...
// TFCard read msg : I am TFcard

1.4 对象适配器模式

实现方式:对象适配器模式可釆用将现有组件库中已经实现的组件引入适配器类中,该类同时实现当前系统的业务接口。

1.4.1 对象适配器模式类图

现有一台电脑只能读取SD卡,而要读取TF卡中的内容的话就需要使用到适配器模式。创建一个读卡器,将TF卡中的内容读取出来。

1.4.2 代码

适配器模式是接口适配器模式。当不希望实现一个接口中所有的方法时,可以创建一个抽象类Adapter ,实现所有方法。而此时我们只需要继承该抽象类即可。

/**
 * 适配者类的接口
 */
public interface TFCard {
    // 从TF卡中读取数据
    String readTF();
    // 往TF卡中写数据
    void writeTF(String msg);
}
/**
 * 适配者类
 */
public class TFCardImpl implements TFCard {
    public String readTF() {
        String msg = "TFCard read msg : I am TFcard";
        return msg;
    }
    public void writeTF(String msg) {
        System.out.println("TFCard write msg :" + msg);
    }
}
/**
 * 目标接口
 */
public interface SDCard {
    // 从SD卡中读取数据
    String readSD();
    // 往SD卡中写数据
    void writeSD(String msg);
}
/**
 * 具体的SD卡
 */
public class SDCardImpl implements SDCard {
    public String readSD() {
        String msg = "SDCard read msg :I am SD";
        return msg;
    }
    public void writeSD(String msg) {
        System.out.println("SDCard write msg :" + msg);
    }
}
/**
 * 适配器类
 */
public class SDAdapterTF implements SDCard {
    // 声明适配者类,实现聚合
    private TFCard tfCard;
  // 有参构造函数
    public SDAdapterTF(TFCard tfCard) {
        this.tfCard = tfCard;
    }
    public String readSD() {
        System.out.println("adapter read tf card...");
        return tfCard.readTF();
    }
    public void writeSD(String msg) {
        System.out.println("adapter write tf card...");
        tfCard.writeTF(msg);
    }
}
/**
 * 电脑类读取SD卡
 */
public class Computer {
    // 从SD卡中读取数据
    public String readSD(SDCard sdCard) {
        if(sdCard == null) {
            throw  new NullPointerException("读卡错误,请检查SD卡是否插入");
        }
        return sdCard.readSD();
    }
}
/**
 * 客户:Client
 */
public class Client {
    public static void main(String[] args) {
        // 创建电脑对象
        Computer computer = new Computer();
        // 未定义适配器类,电脑只能读取SD卡中的数据
        String msg = computer.readSD(new SDCardImpl());
        System.out.println(msg);
        // 创建适配器类对象,使用该电脑读取TF卡中的数据
        SDAdapterTF sdAdapterTF = new SDAdapterTF(new TFCardImpl());
        String msg1 = computer.readSD(sdAdapterTF);
        System.out.println(msg1);
    }
}
// 输出结果:
// SDCard read msg :I am SD
// adapter read tf card...
// TFCard read msg : I am TFcard

1.5 应用场景

  • 以前开发的系统存在满足新系统功能需求的类,但其接口同新系统的接口不一致。
  • 使用第三方提供的组件,但组件接口定义和自己要求的接口定义不同。

1.6 JDK源码解析

Reader(字符流)、InputStream(字节流)的适配使用的是InputStreamReader。

1.6.1 字节流到字符流的转换类图

InputStreamReader是对同样实现了Reader的StreamDecoder的封装。StreamDecoder不是Java SE API中的内容,是Sun JDK给出的自身实现。但我们知道他们对构造方法中的字节流类(InputStream)进行封装,并通过该类进行了字节流和字符流之间的解码转换。

1.6.2 部分源码分析

InputStreamReader继承自java.io包中的Reader,对他中的抽象的未实现的方法给出实现。sd(StreamDecoder类对象),在Sun的JDK实现中,实际的方法实现是对sun.nio.cs.StreamDecoder类的同名方法的调用封装。

public int read() throws IOException {
    return sd.read();
}
public int read(char cbuf[], int offset, int length) throws IOException {
    return sd.read(cbuf, offset, length);
}

1.6.3 总结

从表层来看,InputStreamReader做了InputStream字节流类到Reader字符流之间的转换。而从如上Sun JDK中的实现类关系结构中可以看出,是StreamDecoder的设计实现在实际上采用了适配器模式

记录每一个学习瞬间

目录
相关文章
|
6月前
|
设计模式 Java
Java设计模式【六】:适配器模式
Java设计模式【六】:适配器模式
31 0
|
1月前
|
设计模式 Java
Java设计模式之适配器模式
这篇文章详细讲解了Java设计模式中的适配器模式,包括其应用场景、实现方式及代码示例。
40 0
|
3月前
|
Windows
|
6月前
|
设计模式 C++
结构型 适配器模式
结构型 适配器模式
37 0
|
6月前
|
设计模式
【适配器模式】—— 每天一点小知识
【适配器模式】—— 每天一点小知识
|
设计模式 数据库 C++
2023-6-15-第六式适配器模式
2023-6-15-第六式适配器模式
92 0
|
设计模式 前端开发
关于适配器模式我所知道的
关于适配器模式我所知道的
47 0
|
Java 程序员 API
结构型模式-适配器模式
结构型模式-适配器模式
87 0
|
设计模式
我学会了,适配器模式
适配器模式属于结构型模式,这个类型的设计模式总结出了 类、对象组合后的经典结构,将类、对象的结构和使用解耦了,花式的去借用对象。
98 0
我学会了,适配器模式
|
设计模式 Java
java设计模式之适配器模式
设计模式写写停停,有些在项目中用到了,就提前写了,有些没有用到,但是想完整的更新下来,就都写了。这算是我的设计模式系列的倒数第二篇,因此写完之后也会对我的各大平台上的文章进行一个整理归纳。感谢大家支持。
145 0
java设计模式之适配器模式