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种设计模式漫画版系列—适配器模式,全部内容了。

相关文章
|
2月前
|
Java
在Java中实现接口的具体代码示例
可以根据具体的需求,创建更多的类来实现这个接口,以满足不同形状的计算需求。希望这个示例对你理解在 Java 中如何实现接口有所帮助。
92 38
|
14天前
|
安全 Java 编译器
深入理解Java中synchronized三种使用方式:助您写出线程安全的代码
`synchronized` 是 Java 中的关键字,用于实现线程同步,确保多个线程互斥访问共享资源。它通过内置的监视器锁机制,防止多个线程同时执行被 `synchronized` 修饰的方法或代码块。`synchronized` 可以修饰非静态方法、静态方法和代码块,分别锁定实例对象、类对象或指定的对象。其底层原理基于 JVM 的指令和对象的监视器,JDK 1.6 后引入了偏向锁、轻量级锁等优化措施,提高了性能。
37 3
|
2月前
|
Java
java小工具util系列4:基础工具代码(Msg、PageResult、Response、常量、枚举)
java小工具util系列4:基础工具代码(Msg、PageResult、Response、常量、枚举)
57 24
|
21天前
|
前端开发 Java 测试技术
java日常开发中如何写出优雅的好维护的代码
代码可读性太差,实际是给团队后续开发中埋坑,优化在平时,没有那个团队会说我专门给你一个月来优化之前的代码,所以在日常开发中就要多注意可读性问题,不要写出几天之后自己都看不懂的代码。
57 2
|
1月前
|
Java 编译器 数据库
Java 中的注解(Annotations):代码中的 “元数据” 魔法
Java注解是代码中的“元数据”标签,不直接参与业务逻辑,但在编译或运行时提供重要信息。本文介绍了注解的基础语法、内置注解的应用场景,以及如何自定义注解和结合AOP技术实现方法执行日志记录,展示了注解在提升代码质量、简化开发流程和增强程序功能方面的强大作用。
82 5
|
1月前
|
存储 算法 Java
Java 内存管理与优化:掌控堆与栈,雕琢高效代码
Java内存管理与优化是提升程序性能的关键。掌握堆与栈的运作机制,学习如何有效管理内存资源,雕琢出更加高效的代码,是每个Java开发者必备的技能。
57 5
|
2月前
|
Java API 开发者
Java中的Lambda表达式:简洁代码的利器####
本文探讨了Java中Lambda表达式的概念、用途及其在简化代码和提高开发效率方面的显著作用。通过具体实例,展示了Lambda表达式如何在Java 8及更高版本中替代传统的匿名内部类,使代码更加简洁易读。文章还简要介绍了Lambda表达式的语法和常见用法,帮助开发者更好地理解和应用这一强大的工具。 ####
|
2月前
|
Java API Maven
商汤人像如何对接?Java代码如何写?
商汤人像如何对接?Java代码如何写?
51 5
|
1月前
|
安全 Java API
Java中的Lambda表达式:简化代码的现代魔法
在Java 8的发布中,Lambda表达式的引入无疑是一场编程范式的革命。它不仅让代码变得更加简洁,还使得函数式编程在Java中成为可能。本文将深入探讨Lambda表达式如何改变我们编写和维护Java代码的方式,以及它是如何提升我们编码效率的。
|
2月前
|
Java
Java将OffsetDateTime格式化为 yyyy-MM-dd HH:mm:ss 如何写代码?
Java将OffsetDateTime格式化为 yyyy-MM-dd HH:mm:ss 如何写代码?
39 0