JAVA 适配器模式讲解和代码示例

简介: JAVA 适配器模式讲解和代码示例

使用示例适配器模式在 Java 代码中很常见 基于一些遗留代码的系统常常会使用该模式 在这种情况下 适配器让遗留代码与现代的类得以相互合作

Java 核心程序库中有一些标准的适配器

  • java.util.Arrays#asList()
  • java.util.Collections#list()
  • java.util.Collections#enumeration()
  • java.io.InputStreamReader(InputStream) 返回 Reader对象
  • java.io.OutputStreamWriter(OutputStream) 返回 Writer对象
  • javax.xml.bind.annotation.adapters.XmlAdapter#marshal()#unmarshal()

识别方法适配器可以通过以不同抽象或接口类型实例为参数的构造函数来识别 当适配器的任何方法被调用时 它会将参数转换为合适的格式 然后将调用定向到其封装对象中的一个或多个方法

01让方钉适配圆孔

这个简单的例子展示了适配器如何让不兼容的对象相互合作


02round

round/RoundHole.java: 圆孔

package refactoring_guru.adapter.example.round;/**
* RoundHoles are compatible with RoundPegs.
*/public class RoundHole {    private double radius;    public RoundHole(double radius) {        this.radius = radius;
    }    public double getRadius() {        return radius;
    }    public boolean fits(RoundPeg peg) {        boolean result;        result = (this.getRadius() >= peg.getRadius());        return result;
    }
}

round/RoundPeg.java: 圆钉

package refactoring_guru.adapter.example.round;/**
* RoundPegs are compatible with RoundHoles.
*/public class RoundPeg {    private double radius;    public RoundPeg() {}    public RoundPeg(double radius) {        this.radius = radius;
    }    public double getRadius() {        return radius;
    }
}

03square

square/SquarePeg.java: 方钉

package refactoring_guru.adapter.example.square;/**
* SquarePegs are not compatible with RoundHoles (they were implemented by
* previous development team). But we have to integrate them into our program.
*/public class SquarePeg {    private double width;    public SquarePeg(double width) {        this.width = width;
    }    public double getWidth() {        return width;
    }    public double getSquare() {        double result;        result = Math.pow(this.width, 2);        return result;
    }
}

04adapters

adapters/SquarePegAdapter.java: 方钉到圆孔的适配器

package refactoring_guru.adapter.example.adapters;import refactoring_guru.adapter.example.round.RoundPeg;import refactoring_guru.adapter.example.square.SquarePeg;/**
* Adapter allows fitting square pegs into round holes.
*/public class SquarePegAdapter extends RoundPeg {    private SquarePeg peg;    public SquarePegAdapter(SquarePeg peg) {        this.peg = peg;
    }    @Override
    public double getRadius() {        double result;        // Calculate a minimum circle radius, which can fit this peg.
        result = (Math.sqrt(Math.pow((peg.getWidth() / 2), 2) * 2));        return result;
    }
}

Demo.java: 客户端代码

package refactoring_guru.adapter.example;import refactoring_guru.adapter.example.adapters.SquarePegAdapter;import refactoring_guru.adapter.example.round.RoundHole;import refactoring_guru.adapter.example.round.RoundPeg;import refactoring_guru.adapter.example.square.SquarePeg;/**
* Somewhere in client code...
*/public class Demo {    public static void main(String[] args) {        // Round fits round, no surprise.
        RoundHole hole = new RoundHole(5);        RoundPeg rpeg = new RoundPeg(5);        if (hole.fits(rpeg)) {            System.out.println("Round peg r5 fits round hole r5.");
        }        SquarePeg smallSqPeg = new SquarePeg(2);        SquarePeg largeSqPeg = new SquarePeg(20);        // hole.fits(smallSqPeg); // Won't compile.
        // Adapter solves the problem.
        SquarePegAdapter smallSqPegAdapter = new SquarePegAdapter(smallSqPeg);        SquarePegAdapter largeSqPegAdapter = new SquarePegAdapter(largeSqPeg);        if (hole.fits(smallSqPegAdapter)) {            System.out.println("Square peg w2 fits round hole r5.");
        }        if (!hole.fits(largeSqPegAdapter)) {            System.out.println("Square peg w20 does not fit into round hole r5.");
        }
    }
}

OutputDemo.txt: 执行结果

Round peg r5 fits round hole r5.
Square peg w2 fits round hole r5.
Square peg w20 does not fit into round hole r5.


以上是23种设计模式漫画版系列—适配器模式,全部内容了。

相关文章
|
6天前
|
Java
在 Java 中捕获和处理自定义异常的代码示例
本文提供了一个 Java 代码示例,展示了如何捕获和处理自定义异常。通过创建自定义异常类并使用 try-catch 语句,可以更灵活地处理程序中的错误情况。
|
25天前
|
存储 Java
Java中的HashMap和TreeMap,通过具体示例展示了它们在处理复杂数据结构问题时的应用。
【10月更文挑战第19天】本文详细介绍了Java中的HashMap和TreeMap,通过具体示例展示了它们在处理复杂数据结构问题时的应用。HashMap以其高效的插入、查找和删除操作著称,而TreeMap则擅长于保持元素的自然排序或自定义排序,两者各具优势,适用于不同的开发场景。
41 1
|
20天前
|
XML 安全 Java
Java反射机制:解锁代码的无限可能
Java 反射(Reflection)是Java 的特征之一,它允许程序在运行时动态地访问和操作类的信息,包括类的属性、方法和构造函数。 反射机制能够使程序具备更大的灵活性和扩展性
33 5
Java反射机制:解锁代码的无限可能
|
16天前
|
jenkins Java 测试技术
如何使用 Jenkins 自动发布 Java 代码,通过一个电商公司后端服务的实际案例详细说明
本文介绍了如何使用 Jenkins 自动发布 Java 代码,通过一个电商公司后端服务的实际案例,详细说明了从 Jenkins 安装配置到自动构建、测试和部署的全流程。文中还提供了一个 Jenkinsfile 示例,并分享了实践经验,强调了版本控制、自动化测试等关键点的重要性。
48 3
|
22天前
|
存储 安全 Java
系统安全架构的深度解析与实践:Java代码实现
【11月更文挑战第1天】系统安全架构是保护信息系统免受各种威胁和攻击的关键。作为系统架构师,设计一套完善的系统安全架构不仅需要对各种安全威胁有深入理解,还需要熟练掌握各种安全技术和工具。
60 10
|
17天前
|
分布式计算 Java MaxCompute
ODPS MR节点跑graph连通分量计算代码报错java heap space如何解决
任务启动命令:jar -resources odps-graph-connect-family-2.0-SNAPSHOT.jar -classpath ./odps-graph-connect-family-2.0-SNAPSHOT.jar ConnectFamily 若是设置参数该如何设置
|
16天前
|
Java
Java代码解释++i和i++的五个主要区别
本文介绍了前缀递增(++i)和后缀递增(i++)的区别。两者在独立语句中无差异,但在赋值表达式中,i++ 返回原值,++i 返回新值;在复杂表达式中计算顺序不同;在循环中虽结果相同但使用方式有别。最后通过 `Counter` 类模拟了两者的内部实现原理。
Java代码解释++i和i++的五个主要区别
|
23天前
|
搜索推荐 Java 数据库连接
Java|在 IDEA 里自动生成 MyBatis 模板代码
基于 MyBatis 开发的项目,新增数据库表以后,总是需要编写对应的 Entity、Mapper 和 Service 等等 Class 的代码,这些都是重复的工作,我们可以想一些办法来自动生成这些代码。
30 6
|
24天前
|
Java
通过Java代码解释成员变量(实例变量)和局部变量的区别
本文通过一个Java示例,详细解释了成员变量(实例变量)和局部变量的区别。成员变量属于类的一部分,每个对象有独立的副本;局部变量则在方法或代码块内部声明,作用范围仅限于此。示例代码展示了如何在类中声明和使用这两种变量。
|
25天前
|
存储 Java API
优雅地使用Java Map,通过掌握其高级特性和技巧,让代码更简洁。
【10月更文挑战第19天】本文介绍了如何优雅地使用Java Map,通过掌握其高级特性和技巧,让代码更简洁。内容包括Map的初始化、使用Stream API处理Map、利用merge方法、使用ComputeIfAbsent和ComputeIfPresent,以及Map的默认方法。这些技巧不仅提高了代码的可读性和维护性,还提升了开发效率。
47 3