第06章 适配器模式

本文内容来源于网络收集

作者:冰河
来源:冰河技术公众号

  • 本章难度:★★☆☆☆
  • 本章重点:用最简短的篇幅介绍适配器模式最核心的知识,理解适配器模式的设计精髓,并能够灵活运用到实际项目中,编写可维护的代码。

一、概述

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

二、适用性

1.你想使用一个已经存在的类,而它的接口不符合你的需求。

2.你想创建一个可以复用的类,该类可以与其他不相关的类或不可预见的类(即那些接口 可能不一定兼容的类)协同工作。

3.(仅适用于对象Adapter)你想使用一些已经存在的子类,但是不可能对每一个都进行 子类化以匹配它们的接口。对象适配器可以适配它的父类接口。

三、参与者

1.Target 定义Client使用的与特定领域相关的接口。

2.Client 与符合Target接口的对象协同。

3.Adaptee 定义一个已经存在的接口,这个接口需要适配。

4.Adapter 对Adaptee的接口与Target接口进行适配

四、类图


五、示例

Target

 1
 2
 3
 4
 5
 6
 7
 8
 9
10
11
/**
 * @author binghe(微信 : hacker_binghe)
 * @version 1.0.0
 * @description Target接口
 * @github https://github.com/binghe001
 * @copyright 公众号: 冰河技术
 */
public interface Target {
    void adapteeMethod();
    void adapterMethod();
}

Adaptee

 1
 2
 3
 4
 5
 6
 7
 8
 9
10
11
12
13
/**
 * @author binghe(微信 : hacker_binghe)
 * @version 1.0.0
 * @description 适配器类
 * @github https://github.com/binghe001
 * @copyright 公众号: 冰河技术
 */
public class Adaptee {

    public void adapteeMethod() {
        System.out.println("Adaptee method!");
    }
}

Adapter

 1
 2
 3
 4
 5
 6
 7
 8
 9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
/**
 * @author binghe(微信 : hacker_binghe)
 * @version 1.0.0
 * @description Target的实现类
 * @github https://github.com/binghe001
 * @copyright 公众号: 冰河技术
 */
public class Adapter implements Target{

    private Adaptee adaptee;

    public Adapter(Adaptee adaptee){
        this.adaptee = adaptee;
    }

    @Override
    public void adapteeMethod() {
        adaptee.adapteeMethod();
    }

    @Override
    public void adapterMethod() {
        System.out.println("Adapter method!");
    }
}

Client

 1
 2
 3
 4
 5
 6
 7
 8
 9
10
11
12
13
14
/**
 * @author binghe(微信 : hacker_binghe)
 * @version 1.0.0
 * @description 测试类
 * @github https://github.com/binghe001
 * @copyright 公众号: 冰河技术
 */
public class Test {
    public static void main(String[] args) {
        Target target = new Adapter(new Adaptee());
        target.adapteeMethod();
        target.adapterMethod();
    }
}

Result

1
2
Adaptee method!
Adapter method!