设计模式-桥接模式

By | 2022年3月23日

当我们需要将抽象与其实现分离时使用桥接,以便两者可以独立变化。 这种类型的设计模式属于结构模式,因为这种模式通过在实现类和抽象类之间提供桥梁结构来解耦它们。

这种模式涉及一个充当桥梁的接口,它使具体类的功能独立于接口实现类。 两种类型的类都可以在结构上进行更改,而不会相互影响。

我们通过以下示例演示桥模式的使用,其中可以使用相同的抽象类方法但使用不同的桥实现器类以不同的颜色绘制圆。

举例说明

我们有一个作为桥梁实现者的 DrawAPI 接口和实现 DrawAPI 接口的具体类 RedCircle、GreenCircle。 Shape 是一个抽象类,将使用 DrawAPI 的对象。我们的演示类BridgePatternDemo将使用 Shape 类来绘制不同颜色的圆。

第一步

创建一个要桥接的接口的类

public interface DrawAPI {
   public void drawCircle(int radius, int x, int y);
}

第二步

创建接口实现对象

public class RedCircle implements DrawAPI {
   @Override
   public void drawCircle(int radius, int x, int y) {
      System.out.println("Drawing Circle[ color: red, radius: " + radius + ", x: " + x + ", " + y + "]");
   }
}

public class GreenCircle implements DrawAPI {
   @Override
   public void drawCircle(int radius, int x, int y) {
      System.out.println("Drawing Circle[ color: green, radius: " + radius + ", x: " + x + ", " + y + "]");
   }
}

第三步

创建一个虚类Shape,设计用来调用DrawAPI

public abstract class Shape {
   protected DrawAPI drawAPI;
   
   protected Shape(DrawAPI drawAPI){
      this.drawAPI = drawAPI;
   }
   public abstract void draw();	
}

第四步

创建一个Shape的实现类

public class Circle extends Shape {
   private int x, y, radius;

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

   public void draw() {
      drawAPI.drawCircle(radius,x,y);
   }
}

第五步

通过Circle对象调用不同的DrawAPI实现类

public class BridgePatternDemo {
   public static void main(String[] args) {
      Shape redCircle = new Circle(100,100, 10, new RedCircle());
      Shape greenCircle = new Circle(100,100, 10, new GreenCircle());

      redCircle.draw();
      greenCircle.draw();
   }
}