桥接模式案例

复制代码
	桥接模式(Bridge Pattern)是一种结构型设计模式,它将抽象部分与实现部分分离,使它们可以独立变化。桥接模式通过创
建一个桥接接口,将抽象部分和实现部分连接起来,从而实现两者的解耦。

下面是一个详细的桥接模式案例,假设我们要设计一个图形绘制系统,支持不同类型的图形(如圆形、矩形)和不同的绘制工具(如画笔、画刷)。

  1. 定义实现部分的接口
    首先,我们定义一个绘制工具的接口,这个接口将作为桥接模式的实现部分。
java 复制代码
// 绘制工具接口
public interface DrawingTool {
    void drawCircle(int radius, int x, int y);
    void drawRectangle(int width, int height, int x, int y);
}
  1. 实现具体的绘制工具
    接下来,我们实现具体的绘制工具,如画笔和画刷。
java 复制代码
// 画笔工具
public class Pen implements DrawingTool {
    @Override
    public void drawCircle(int radius, int x, int y) {
        System.out.println("用画笔绘制圆形,半径: " + radius + ", 位置: (" + x + ", " + y + ")");
    }

    @Override
    public void drawRectangle(int width, int height, int x, int y) {
        System.out.println("用画笔绘制矩形,宽度: " + width + ", 高度: " + height + ", 位置: (" + x + ", " + y + ")");
    }
}

// 画刷工具
public class Brush implements DrawingTool {
    @Override
    public void drawCircle(int radius, int x, int y) {
        System.out.println("用画刷绘制圆形,半径: " + radius + ", 位置: (" + x + ", " + y + ")");
    }

    @Override
    public void drawRectangle(int width, int height, int x, int y) {
        System.out.println("用画刷绘制矩形,宽度: " + width + ", 高度: " + height + ", 位置: (" + x + ", " + y + ")");
    }
}
  1. 定义抽象部分的接口
    接下来,我们定义一个图形的抽象类,这个抽象类将作为桥接模式的抽象部分。
java 复制代码
// 图形抽象类
public abstract class Shape {
    protected DrawingTool drawingTool;

    public Shape(DrawingTool drawingTool) {
        this.drawingTool = drawingTool;
    }

    public abstract void draw();
}
  1. 实现具体的图形
    然后,我们实现具体的图形,如圆形和矩形。
java 复制代码
// 圆形
public class Circle extends Shape {
    private int radius;
    private int x;
    private int y;

    public Circle(int radius, int x, int y, DrawingTool drawingTool) {
        super(drawingTool);
        this.radius = radius;
        this.x = x;
        this.y = y;
    }

    @Override
    public void draw() {
        drawingTool.drawCircle(radius, x, y);
    }
}

// 矩形
public class Rectangle extends Shape {
    private int width;
    private int height;
    private int x;
    private int y;

    public Rectangle(int width, int height, int x, int y, DrawingTool drawingTool) {
        super(drawingTool);
        this.width = width;
        this.height = height;
        this.x = x;
        this.y = y;
    }

    @Override
    public void draw() {
        drawingTool.drawRectangle(width, height, x, y);
    }
}
  1. 使用桥接模式
    最后,我们使用桥接模式来绘制图形。
java 复制代码
public class BridgePatternDemo {
    public static void main(String[] args) {
        Shape circleWithPen = new Circle(10, 50, 50, new Pen());
        circleWithPen.draw();

        Shape circleWithBrush = new Circle(10, 50, 50, new Brush());
        circleWithBrush.draw();

        Shape rectangleWithPen = new Rectangle(20, 30, 100, 100, new Pen());
        rectangleWithPen.draw();

        Shape rectangleWithBrush = new Rectangle(20, 30, 100, 100, new Brush());
        rectangleWithBrush.draw();
    }
}
相关推荐
Frank学习路上9 分钟前
【IOS】XCode创建firstapp并运行(成为IOS开发者)
开发语言·学习·ios·cocoa·xcode
2301_8050545638 分钟前
Python训练营打卡Day59(2025.7.3)
开发语言·python
lsx2024061 小时前
CSS 网页布局:从基础到进阶
开发语言
万千思绪1 小时前
【PyCharm 2025.1.2配置debug】
ide·python·pycharm
蜗牛沐雨1 小时前
警惕 Rust 字符串的性能陷阱:`chars().nth()` 的深坑与高效之道
开发语言·后端·rust
2401_858286112 小时前
125.【C语言】数据结构之归并排序递归解法
c语言·开发语言·数据结构·算法·排序算法·归并排序
guygg882 小时前
基于matlab的FIR滤波器
开发语言·算法·matlab
双叶8363 小时前
(C++)学生管理系统(正式版)(map数组的应用)(string应用)(引用)(文件储存的应用)(C++教学)(C++项目)
c语言·开发语言·数据结构·c++
微风粼粼3 小时前
程序员在线接单
java·jvm·后端·python·eclipse·tomcat·dubbo
源代码•宸3 小时前
C++高频知识点(二)
开发语言·c++·经验分享