妙解设计模式之桥接模式

桥接模式的概念

桥接模式(Bridge Pattern)是一种结构型设计模式,用于将抽象部分和实现部分分离,使它们可以独立变化。这种模式通过组合而不是继承来实现这个目标,从而提高系统的灵活性和可扩展性。

  1. 抽象部分:定义抽象类,并包含一个对实现部分接口的引用。
  2. 实现部分:定义接口,具体的实现类实现这个接口。
  3. 分离:抽象部分和实现部分独立变化,彼此之间没有直接依赖关系。

为什么需要桥接模式?

  • 避免继承层次过深:当类的继承层次过深时,修改和扩展变得非常困难。桥接模式通过组合方式解决这个问题。
  • 提高灵活性:抽象和实现部分可以独立地扩展,不会相互影响。
  • 遵循开闭原则:对扩展开放,对修改关闭。桥接模式使得我们在不修改现有代码的基础上进行扩展。

桥接模式的结构

  • Abstraction(抽象类):定义高层的控制逻辑,包含一个实现部分的引用。
  • RefinedAbstraction(扩充抽象类):扩展抽象类,提供具体的业务逻辑。
  • Implementor(实现接口):定义实现部分的接口,声明实现类需要实现的方法。
  • ConcreteImplementor(具体实现类):实现实现接口,提供具体的实现。

生活中的例子

想象一下,你家里有很多种不同的电视机,比如索尼电视和三星电视。每个电视机都有不同的遥控器。这时候,你会觉得很麻烦,因为每次换电视机都要换遥控器。

如果我们能有一种万能遥控器,不管电视机是什么品牌,只要有这个遥控器就能控制所有的电视机,那就方便多了。桥接模式就像这个万能遥控器,让我们可以用一个遥控器控制不同的电视机。

例子:玩具遥控车

假设我们有一个玩具遥控车系统,有不同的车子(红色车、蓝色车)和不同的遥控器(简单遥控器、高级遥控器)。

定义车子

// 车子接口
interface Car {void drive();
}// 红色车子
class RedCar implements Car {@Overridepublic void drive() {System.out.println("红色车子在开");}
}// 蓝色车子
class BlueCar implements Car {@Overridepublic void drive() {System.out.println("蓝色车子在开");}
}

定义遥控器

// 遥控器抽象类
abstract class RemoteControl {protected Car car;protected RemoteControl(Car car) {this.car = car;}public abstract void pressButton();
}// 简单遥控器
class SimpleRemoteControl extends RemoteControl {public SimpleRemoteControl(Car car) {super(car);}@Overridepublic void pressButton() {car.drive();}
}// 高级遥控器
class AdvancedRemoteControl extends RemoteControl {public AdvancedRemoteControl(Car car) {super(car);}@Overridepublic void pressButton() {car.drive();System.out.println("高级遥控器还可以做更多的事情");}
}

测试

public class Main {public static void main(String[] args) {Car redCar = new RedCar();Car blueCar = new BlueCar();RemoteControl simpleRemote = new SimpleRemoteControl(redCar);simpleRemote.pressButton(); // 红色车子在开RemoteControl advancedRemote = new AdvancedRemoteControl(blueCar);advancedRemote.pressButton(); // 蓝色车子在开,高级遥控器还可以做更多的事情}
}

编程中的例子

假设我们在做一个图形绘制程序,支持绘制不同形状(如圆形和矩形),并且这些形状可以有不同的颜色(如红色和蓝色)。

我们可以使用桥接模式来实现,这样就能让形状和颜色独立变化,增加新的形状或颜色时不需要修改现有代码。

定义颜色接口(实现部分)

// 颜色接口
interface Color {void applyColor();
}// 红色实现
class RedColor implements Color {@Overridepublic void applyColor() {System.out.println("Applying red color.");}
}// 蓝色实现
class BlueColor implements Color {@Overridepublic void applyColor() {System.out.println("Applying blue color.");}
}

定义形状抽象类(抽象部分)

// 抽象类:形状
abstract class Shape {protected Color color;protected Shape(Color color) {this.color = color;}public abstract void draw();
}

扩展具体的形状类(扩展抽象部分)

// 圆形
class Circle extends Shape {public Circle(Color color) {super(color);}@Overridepublic void draw() {System.out.print("Drawing Circle in ");color.applyColor();}
}// 矩形
class Rectangle extends Shape {public Rectangle(Color color) {super(color);}@Overridepublic void draw() {System.out.print("Drawing Rectangle in ");color.applyColor();}
}

优点

  1. 独立变化:我们可以独立地增加新的颜色(如绿色、黄色)或新的形状(如三角形),而无需修改现有的代码。
  2. 灵活组合:形状和颜色可以自由组合,形成各种不同的组合方式。
  3. 易于扩展:遵循开闭原则,对扩展开放,对修改关闭。

软件工程中的实际应用

桥接模式在软件工程中有很多实际应用,特别是当我们需要在两个或多个维度上扩展一个系统时。

1.图形绘制系统

在图形绘制系统中,形状和颜色是两个独立变化的维度。使用桥接模式可以让形状和颜色独立变化。我们之前的例子已经展示了这一点。

2.数据库驱动程序

在数据库应用中,不同的数据库(如MySQL、PostgreSQL、Oracle)有不同的连接方式和查询方式。桥接模式可以将数据库连接和查询抽象出来,使得应用程序可以独立地切换数据库而不需要大量修改代码。

// 实现接口:数据库连接
interface DatabaseConnection {void connect();
}// 具体实现类:MySQL连接
class MySQLConnection implements DatabaseConnection {@Overridepublic void connect() {System.out.println("Connecting to MySQL Database.");}
}// 具体实现类:PostgreSQL连接
class PostgreSQLConnection implements DatabaseConnection {@Overridepublic void connect() {System.out.println("Connecting to PostgreSQL Database.");}
}// 抽象类:数据库操作
abstract class DatabaseOperation {protected DatabaseConnection connection;protected DatabaseOperation(DatabaseConnection connection) {this.connection = connection;}public abstract void execute();
}// 具体操作类:查询操作
class QueryOperation extends DatabaseOperation {public QueryOperation(DatabaseConnection connection) {super(connection);}@Overridepublic void execute() {connection.connect();System.out.println("Executing query operation.");}
}// 测试桥接模式
public class Main {public static void main(String[] args) {DatabaseConnection mysqlConnection = new MySQLConnection();DatabaseOperation queryOperation = new QueryOperation(mysqlConnection);queryOperation.execute(); // Connecting to MySQL Database. Executing query operation.DatabaseConnection postgresqlConnection = new PostgreSQLConnection();queryOperation = new QueryOperation(postgresqlConnection);queryOperation.execute(); // Connecting to PostgreSQL Database. Executing query operation.}
}

3.文件系统抽象

在处理文件系统时,我们可能需要支持本地文件系统、远程文件系统、云存储等。桥接模式可以将文件操作与具体的文件系统实现分离。

// 实现接口:文件系统
interface FileSystem {void readFile(String path);void writeFile(String path, String content);
}// 具体实现类:本地文件系统
class LocalFileSystem implements FileSystem {@Overridepublic void readFile(String path) {System.out.println("Reading file from local file system: " + path);}@Overridepublic void writeFile(String path, String content) {System.out.println("Writing file to local file system: " + path);}
}// 具体实现类:云存储文件系统
class CloudFileSystem implements FileSystem {@Overridepublic void readFile(String path) {System.out.println("Reading file from cloud file system: " + path);}@Overridepublic void writeFile(String path, String content) {System.out.println("Writing file to cloud file system: " + path);}
}// 抽象类:文件操作
abstract class FileOperation {protected FileSystem fileSystem;protected FileOperation(FileSystem fileSystem) {this.fileSystem = fileSystem;}public abstract void performRead(String path);public abstract void performWrite(String path, String content);
}// 具体操作类:文件读写操作
class ReadWriteOperation extends FileOperation {public ReadWriteOperation(FileSystem fileSystem) {super(fileSystem);}@Overridepublic void performRead(String path) {fileSystem.readFile(path);}@Overridepublic void performWrite(String path, String content) {fileSystem.writeFile(path, content);}
}// 测试桥接模式
public class Main {public static void main(String[] args) {FileSystem localFileSystem = new LocalFileSystem();FileOperation fileOperation = new ReadWriteOperation(localFileSystem);fileOperation.performRead("local_path.txt"); // Reading file from local file system: local_path.txtfileOperation.performWrite("local_path.txt", "content"); // Writing file to local file system: local_path.txtFileSystem cloudFileSystem = new CloudFileSystem();fileOperation = new ReadWriteOperation(cloudFileSystem);fileOperation.performRead("cloud_path.txt"); // Reading file from cloud file system: cloud_path.txtfileOperation.performWrite("cloud_path.txt", "content"); // Writing file to cloud file system: cloud_path.txt}
}

4.用户界面主题

在用户界面开发中,不同的控件(如按钮、文本框)可以有不同的主题(如浅色主题、深色主题)。桥接模式可以将控件和主题分离,使得它们可以独立变化。

// 实现接口:主题
interface Theme {void applyTheme();
}// 具体实现类:浅色主题
class LightTheme implements Theme {@Overridepublic void applyTheme() {System.out.println("Applying light theme.");}
}// 具体实现类:深色主题
class DarkTheme implements Theme {@Overridepublic void applyTheme() {System.out.println("Applying dark theme.");}
}// 抽象类:控件
abstract class UIComponent {protected Theme theme;protected UIComponent(Theme theme) {this.theme = theme;}public abstract void display();
}// 具体控件类:按钮
class Button extends UIComponent {public Button(Theme theme) {super(theme);}@Overridepublic void display() {System.out.print("Displaying button with ");theme.applyTheme();}
}// 具体控件类:文本框
class TextBox extends UIComponent {public TextBox(Theme theme) {super(theme);}@Overridepublic void display() {System.out.print("Displaying textbox with ");theme.applyTheme();}
}// 测试桥接模式
public class Main {public static void main(String[] args) {Theme lightTheme = new LightTheme();UIComponent button = new Button(lightTheme);button.display(); // Displaying button with Applying light theme.Theme darkTheme = new DarkTheme();UIComponent textBox = new TextBox(darkTheme);textBox.display(); // Displaying textbox with Applying dark theme.}
}

本文来自互联网用户投稿,该文观点仅代表作者本人,不代表本站立场。本站仅提供信息存储空间服务,不拥有所有权,不承担相关法律责任。如若转载,请注明出处:http://www.mzph.cn/diannao/37250.shtml

如若内容造成侵权/违法违规/事实不符,请联系多彩编程网进行投诉反馈email:809451989@qq.com,一经查实,立即删除!

相关文章

如何使用C++进行文件读写操作

在C中&#xff0c;我们可以使用标准库中的 <fstream>&#xff08;文件流&#xff09;来进行文件的读写操作。以下是一些基本的文件读写操作的示例。 读取文件 cpp复制代码 #include <fstream> #include <iostream> #include <string> int main() { s…

MySQL高级-SQL优化- update 优化(尽量根据主键/索引字段进行数据更新,避免行锁升级为表锁)

文章目录 0、update 优化1、创建表2、默认是行锁3、行锁升级为表锁4、给name字段建立索引 0、update 优化 InnoDB的行锁是针对索引加的锁&#xff0c;不是针对记录加的锁&#xff0c;并且该索引不能失效&#xff0c;否则会从行锁升级为表锁。 1、创建表 create table course(…

【严正声明】鉴于CSDN的流氓行为,现已清空所有文章,资源下载分统一改为0

【严正声明】鉴于CSDN的流氓行为&#xff0c;现已清空所有文章&#xff0c;资源下载分统一改为0 鉴于CSDN的流氓行为&#xff0c;现已清空所有文章&#xff0c;资源下载分统一改为0 鉴于CSDN的流氓行为&#xff0c;现已清空所有文章&#xff0c;资源下载分统一改为0 如果你在C…

CUDA 编程

## blocksize和gridsize设置 使用deviceQuery查看GPU相关信息(下图为1080 ti)blocksize的最大值建议不要超过Maximum number of threads per block&#xff08;1024&#xff09;由于每个block里的线程需要被分为数个wrap&#xff0c;而wrap size为32&#xff08;Warp size&…

搭建企业内网pypi镜像库,让python在内网也能像互联网一样安装pip库

目录 知识点实验1.服务器安装python2.新建一个目录/mirror/pip&#xff0c;用于存储pypi文件&#xff0c;作为仓库目录3.下载python中的所需包放至仓库文件夹/mirror/pip3.1. 新建requirement.py脚本&#xff08;将清华pypi镜像库文件列表粘贴到requirement.txt文件中&#xff…

【MATLAB源码-第231期】基于matlab的polar码编码译码仿真,对比SC,SCL,BP,SCAN,SSC等译码算法误码率。

操作环境&#xff1a; MATLAB 2022a 1、算法描述 极化码&#xff08;Polar Code&#xff09; 极化码&#xff08;Polar Code&#xff09;是一种新型的信道编码技术&#xff0c;由土耳其裔教授Erdal Arıkan在2008年提出。极化码在理论上被证明能够在信道容量上达到香农极限…

成熟ICT测试系统与LabVIEW定制开发的比较

ICT&#xff08;In-Circuit Test&#xff09;测试系统是电子制造行业中用于电路板&#xff08;PCB&#xff09;组件检测的重要工具。市场上有许多成熟的ICT测试系统&#xff0c;如Keysight、Teradyne、SPEA等公司提供的商用解决方案。此外&#xff0c;LabVIEW作为一种强大的图形…

单目操作符

目录 ! --- 逻辑反操作 & --- 取地址操作符 * --- 间接访问操作符&#xff08;解引用操作符&#xff09; sizeof --- 操作数的类型长度&#xff08;单位为字节&#xff09; ~ --- 对一个数的补码二进制按位取反 前置和前置-- 后置和后置-- (类型) --- 强制类型转换…

three.js场景三元素

three.js是一个基于WebGL的轻量级、易于使用的3D库。它极大地简化了WebGL的复杂细节&#xff0c;降低了学习成本&#xff0c;同时提高了性能。 three.js的三大核心元素&#xff1a; 场景&#xff08;Scene&#xff09; 场景是一个三维空间&#xff0c;是所有物品的容器。可以将…

安卓速度下载v1.0.5/聚合短视频解析下载

功能特色 短视频下载与高级管理 – 支持短视频下载&#xff0c;为您提供一系列高级视频管理功能包括视频内容提取、智能防重复技术、视频体积压缩以及视频转换成GIF图片等&#xff1b; 磁-力链接下载升级 – 现支持磁力链接下载&#xff0c;实现边下载边播放的便捷体验&#x…

构建基于LLMs混合型大模型的先进事实性问答系统架构

1.引言 传统搜索系统基于关键字匹配&#xff0c;缺少对用户问题理解和答案二次处理能力。本文探索使用大语言模型&#xff08;Large Language Model, LLM&#xff09;&#xff0c;通过其对自然语言理解&#xff08;Natural Language Understanding&#xff0c;NLU&#xff09;…

阿里云常用的操作

阿里云常见的产品和服务 容器服务 可以查看容器日志、监控容器cpu和内存&#xff0c; 日志服务 SLS 可以查看所有服务的日志&#xff0c; Web应用防火墙 WAF 可以查看 QPS. 阿里云查看集群&#xff1a; 点击 “产品和服务” 中的 容器服务&#xff0c;可以查看 集群列表&…

linux server下人脸检测与识别服务程序的系统架构设计

一、绪论 1.1 定义 1.2 研究背景及意义 1.3 相关技术综述 二、人脸检测与识别技术概述 2.1 人脸检测原理与算法 2.2 人脸识别技术及方法 2.3 人脸识别过程简介 三、人脸检测与识别服务程序的系统架构 3.1 系统架构设计 3.2 技术实现流程 四、后续设计及经验瞎谈 4.…

解释Java中的抽象类、接口、重载和重写等核心概念

Java中的抽象类、接口、重载和重写等核心概念详解 在Java编程中&#xff0c;抽象类、接口、重载和重写是面向对象编程的四个核心概念。这些概念不仅构成了Java编程语言的基础&#xff0c;也是面试官在面试过程中经常考察的要点。下面&#xff0c;我将从技术难点、面试官关注点…

字符串

对应练习题&#xff1a;力扣平台 14. 最长公共前缀 class Solution { public:string longestCommonPrefix(vector<string>& strs) {string strs1strs[0];//初始前缀字符串for (int i 1; i < strs.size(); i) {while(strs[i].find(strs1)!0)//遍历找到共同最长前…

第五节:如何使用其他注解方式从IOC中获取bean(自学Spring boot 3.x的第一天)

大家好&#xff0c;我是网创有方&#xff0c;上节我们实践了通过Bean方式声明Bean配置。咱们这节通过Component和ComponentScan方式实现一个同样功能。这节实现的效果是从IOC中加载Bean对象&#xff0c;并且将Bean的属性打印到控制台。 第一步&#xff1a;创建pojo实体类studen…

Android进阶之路 - DialogFragment有没有了解的必要?

几个月前写到了弹框业务&#xff0c;以前经常用Dialog、ButtomDialog 、popupWindow 组件&#xff0c;为了契合项目结构参考了原有的 DialogFragment 组件&#xff0c;特此予以记录 我一般在项目中写弹框组件的话&#xff0c;主要用到 alertDialog、popupWindow 组件&#xff0…

面试经验分享 | 渗透测试工程师(实习岗)

所面试的公司&#xff1a;某安全厂商 所在城市&#xff1a;南京 面试职位&#xff1a;渗透测试工程师实习岗位 面试过程&#xff1a; 腾讯会议&#xff08;视频&#xff09; 面试过程&#xff1a;整体流程就是自我介绍加上一些问题问题balabalabala。。。由于面的岗位是渗透…

用GPT-4纠错GPT-4 OpenAI推出CriticGPT模型

根据OpenAI周四&#xff08;6月27日&#xff09;发布的新闻稿&#xff0c;该公司新推出了一个基于GPT-4的模型——CriticGPT&#xff0c;用于捕获ChatGPT代码输出中的错误。CriticGPT的作用相当于让人们用GPT-4来查找GPT-4的错误。该模型可以对ChatGPT响应结果做出批评评论&…

有没有能用蓝牙的游泳耳机,性能超凡的4大游泳耳机力荐

在现代科技的推动下&#xff0c;越来越多具备蓝牙功能的游泳耳机正在改变游泳爱好者的体验方式。这些创新产品不仅在防水性能上有了显著提升&#xff0c;还能让您在水中享受到高质量的音乐。然而&#xff0c;选择一款优秀的蓝牙游泳耳机并不简单&#xff0c;需要考虑到防水等级…