简谈设计模式之适配器模式

适配器模式是结构型设计模式之一, 用于将一个类的接口转换成客户期望的另一个接口. 通过使用适配器模式, 原本由于接口不兼容而无法一起工作的类可以协同工作

适配器模式通常有两种实现方式

  1. 类适配器模式 (Class Adapter Pattern): 使用继承来实现适配器。
  2. **对象适配器模式 (Object Adapter Pattern) **: 使用组合来实现适配器。

适配器模式结构

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

适配器模式实现

  1. 类适配器模式

类适配器模式通过继承目标接口和被适配类, 实现适配功能

java 复制代码
// 目标接口
interface Target {
    void request();
}

// 被适配者类
class Adaptee {
    void specificRequest() {
        System.out.println("Adaptee's specific request");
    }
}

// 类适配器
class ClassAdapter extends Adaptee implements Target {
    public void request() {
        specificRequest();
    }
}

// 客户端代码
public class Client {
    public static void main(String[] args) {
        Target target = new ClassAdapter();
        target.request();
    }
}
  1. 对象适配器模式

对象适配器模式通过组合的方式, 将被适配者类的实例作为适配器的一个字段, 并在适配器中调用被适配者的方法

java 复制代码
// 目标接口
interface Target {
    void request();
}

// 被适配类
class Adaptee {
    void specificRequest() {
        System.out.println("Adaptee's specific request");
    }
}

// 对象适配器
class ObjectAdapter implements Target {
    private Adaptee adaptee;
    
    public ObjectAdapter(Adaptee adaptee) {
        this.adaptee = adaptee;
    }
    
    public void request() {
        adaptee.specificRequest();
    }
}

public class Client {
    public static void main(String[] args) {
        Adaptee adaptee = new Adaptee();
        Target target = new ObjectAdapter();
        target.request();
    }
}

优点:

  1. 分离接口和实现: 适配器模式将客户端和被适配者类的接口分离开, 通过适配器类进行转换, 增强了代码的灵活性和可维护性
  2. 复用现有类: 通过适配器模式, 可以复用现有的类, 而不需要修改其代码, 从而满足新的需求

缺点

  1. 复杂性增加: 使用适配器模式会增加系统的复杂性, 尤其是需要同时适配多个类时, 可能需要大量的适配器类
  2. 性能开销: 适配器模式会引入额外的接口调用开销, 可能会对性能产生一定的影响
相关推荐
v'sir13 分钟前
POI word转pdf乱码问题处理
java·spring boot·后端·pdf·word
提高记忆力21 分钟前
SpringBoot整合FreeMarker生成word表格文件
java·spring
JDS_DIJ22 分钟前
RabbitMQ
java·rabbitmq·java-rabbitmq
XiaoLeisj36 分钟前
【JavaEE初阶 — 多线程】生产消费模型 & 阻塞队列
java·开发语言·java-ee
hxj..44 分钟前
【设计模式】外观模式
java·设计模式·外观模式
吾与谁归in1 小时前
【C#设计模式(10)——装饰器模式(Decorator Pattern)】
设计模式·c#·装饰器模式
冰逸.itbignyi1 小时前
SpringBoot之AOP 的使用
java·spring boot
无敌岩雀2 小时前
C++设计模式行为模式———命令模式
c++·设计模式·命令模式
qq_441996053 小时前
Mybatis官方生成器使用示例
java·mybatis
巨大八爪鱼3 小时前
XP系统下用mod_jk 1.2.40整合apache2.2.16和tomcat 6.0.29,让apache可以同时访问php和jsp页面
java·tomcat·apache·mod_jk