六、桥接模式

**桥接模式(Bridge Pattern)**是一种结构型设计模式,旨在将抽象与实现分离,使得两者可以独立变化。通过使用桥接模式,可以避免在多个维度上进行继承,降低代码的复杂度,从而提高系统的可扩展性。

组成部分

  1. 抽象类(Abstraction): 定义高层的抽象接口,并持有对实现的引用。
  2. 扩展抽象类(RefinedAbstraction): 继承自抽象类,提供具体的扩展实现。
  3. 实现接口(Implementor): 定义实现部分的接口。
  4. 具体实现类(ConcreteImplementor): 实现实现接口的具体类。

JAVA:

java 复制代码
// 1、定义一个图像接口
public interface Graph {

    //画图方法 参数:半径 长 宽
    public void drawGraph(int radius, int x, int y);
}
java 复制代码
// 红色图形
public class RedGraph implements Graph{

    @Override
    public void drawGraph(int radius, int x, int y) {
        System.out.println("红色");
    }
}
java 复制代码
// 创建一个形状
public abstract class Shape {

    public Graph graph;

    public Shape(Graph graph){
        this.graph = graph;
    }

    public abstract void draw();
}
java 复制代码
// 圆形
public class Circle extends Shape{
    private int radius;
    private int x;
    private int y;

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

    @Override
    public void draw() {
        System.out.println("圆形");
        graph.drawGraph(radius, x, y);
    }
}
java 复制代码
@Test(description = "桥接模式")
    public void bridgePatternTest(){
        //创建圆形
        Shape shape = new Circle(10, 100, 100, new RedGraph());
        shape.draw();
    }

GO:

Go 复制代码
package bridge

import "fmt"

// 桥接模式

// IMsgSender 消息发送接口
type IMsgSender interface {
	// Send 发送动作函数
	Send(msg string) error
}

// EmailMsgSender发送邮件
// 可能还有 电话、短信等各种实现
type IMsgReceiver struct {
	emails []string
}

func (I IMsgReceiver) Send(msg string) error {
	// 这里去发送消息
	fmt.Println(msg, "消息发送成功")
	return nil
}

func NewEmailMsgSender(emails []string) *IMsgReceiver {
	return &IMsgReceiver{emails: emails}
}

// INotification 通知接口
type INotification interface {
	// Notify 通报函数
	Notify(msg string) error
}

// ErrorNotification 错误通知
// 后面可能还有 warning 各种级别
type ErrorNotification struct {
	sender IMsgSender
}

// Notify 发送通知
func (e ErrorNotification) Notify(msg string) error {
	return e.sender.Send(msg)
}

func NewErrorNotification(sender IMsgSender) *ErrorNotification {
	return &ErrorNotification{sender: sender}
}
Go 复制代码
func TestBridge(t *testing.T) {
	sender := NewEmailMsgSender([]string{"test@test.com"})
	n := NewErrorNotification(sender)
	err := n.Notify("test msg")
	assert.Nil(t, err)
}
相关推荐
mhpboy1921 天前
Vm桥接模式下的网卡选择
linux·网络·桥接模式
捕鲸叉1 天前
C++设计模式之适配器模式与桥接模式,装饰器模式及代理模式相似点与不同点
设计模式·桥接模式·适配器模式·装饰器模式
吾与谁归in5 天前
【C#设计模式(7)——桥接模式(Bridge Pattern)】
设计模式·c#·桥接模式
牛马小风6 天前
️虚拟机配置NAT和Bridge模式
网络·智能路由器·桥接模式
jjjxxxhhh1236 天前
c++设计模式之桥接模式
c++·设计模式·桥接模式
明辉光焱7 天前
【ES6】ES6中,如何实现桥接模式?
前端·javascript·es6·桥接模式
morning_judger15 天前
【设计模式系列】桥接模式(十三)
java·设计模式·桥接模式
无敌岩雀16 天前
C++设计模式结构型模式———桥接模式
c++·设计模式·桥接模式
ROS机器人学习与交流19 天前
虚拟机桥接模式连不上,无法进行SSH等远程操作
桥接模式
wrx繁星点点22 天前
桥接模式:解耦抽象与实现的利器
android·java·开发语言·jvm·spring cloud·intellij-idea·桥接模式