Bridge Design Pattern

“Decouple an abstraction from its implementation so that the two can vary independently” is the intent for bridge design pattern as stated by GoF.
Bridge design pattern is a modified version of the notion of “prefer composition over inheritance”.

Problem and Need for Bridge Design Pattern

When there are inheritance hierarchies creating concrete implementation, you loose flexibility because of interdependence. Oops! these kind of sentencies shows that the author(I) didn’t understand and tries to escape! Okay, I will decrypt this sentence in the coming paragraphs.
Decouple implentation from interface and hiding implementation details from client is the essense of bridge design pattern.

Elements of Bridge Design Pattern

Abstraction – core of the bridge design pattern and defines the crux. Contains a reference to the implementer.
Refined Abstraction – Extends the abstraction takes the finer detail one level below. Hides the finer elements from implemetors.
Implementer – This interface is the higer level than abstraction. Just defines the basic operations.
Concrete Implementation – Implements the above implementer by providing concrete implementation.

Example for core elements of Bridge Design Pattern

Vehicle -> Abstraction
manufacture()

Car -> Refined Abstraction 1
manufacture()

Bike -> Refined Abstraction 2
manufacture()

Workshop -> Implementor
work()

Produce -> Concrete Implementation 1
work()

Assemble -> Concrete Implementation 2
work()

Generic UML Diagram for Bridge Design Pattern

Before Bridge Design Pattern

After Bridge Design Pattern

Sample Java Code for Bridge Design Pattern

package com.javapapers.designpattern;

/**
* abstraction in bridge pattern
* */
abstract class Vehicle {
protected Workshop workShop1;
protected Workshop workShop2;

protected Vehicle(Workshop workShop1, Workshop workShop2) {
    this.workShop1 = workShop1;
    this.workShop2 = workShop2;
}

abstract public void manufacture();

}

package com.javapapers.designpattern;

/**
* Refine abstraction 1 in bridge pattern
*/
public class Car extends Vehicle {

public Car(Workshop workShop1, Workshop workShop2) {
    super(workShop1, workShop2);
}

@Override
public void manufacture() {
    System.out.print("Car ");
    workShop1.work();
    workShop2.work();

}

}

package com.javapapers.designpattern;

/**
* Refine abstraction 2 in bridge pattern
*/
public class Bike extends Vehicle {

public Bike(Workshop workShop1, Workshop workShop2) {
    super(workShop1, workShop2);
}

@Override
public void manufacture() {
    System.out.print("Bike ");
    workShop1.work();
    workShop2.work();
}

}

package com.javapapers.designpattern;

/**
* Implementor for bridge pattern
* */
public interface Workshop {
abstract public void work();
}

package com.javapapers.designpattern;

/**
* Concrete implementation 1 for bridge pattern
* */
public class Produce implements Workshop {

@Override
public void work() {
    System.out.print("Produced");
}

}

package com.javapapers.designpattern;

/**
* Concrete implementation 2 for bridge pattern
* */
public class Assemble implements Workshop {

@Override
public void work() {
    System.out.println(" Assembled.");
}

}

package com.javapapers.designpattern;

/*
* Demonstration of bridge design pattern
*/
public class BridgePattern {

public static void main(String[] args) {

    Vehicle vehicle1 = new Car(new Produce(), new Assemble());
    vehicle1.manufacture();
    Vehicle vehicle2 = new Bike(new Produce(), new Assemble());
    vehicle2.manufacture();

}

}

Output:
Car Produced Assembled.
Bike Produced Assembled.
Summary of Bridge Design Pattern
Creates two different hierarchies. One for abstraction and another for implementation.
Avoids permanent binding by removing the dependency between abstraction and implementation.
We create a bridge that coordinates between abstraction and implementation.
Abstraction and implementation can be extended separately.
Should be used when we have need to switch implementation at runtime.
Client should not be impacted if there is modification in implementation of abstraction.
Best used when you have multiple implementations.
Bridge Vs Adapter Design Pattern
The adapter design pattern helps it two incompatible classes to work together. But, bridge design pattern decouples the abstraction and implementation by creating two different hierarchies.

  • 0
    点赞
  • 0
    收藏
    觉得还不错? 一键收藏
  • 0
    评论
评论
添加红包

请填写红包祝福语或标题

红包个数最小为10个

红包金额最低5元

当前余额3.43前往充值 >
需支付:10.00
成就一亿技术人!
领取后你会自动成为博主和红包主的粉丝 规则
hope_wisdom
发出的红包
实付
使用余额支付
点击重新获取
扫码支付
钱包余额 0

抵扣说明:

1.余额是钱包充值的虚拟货币,按照1:1的比例进行支付金额的抵扣。
2.余额无法直接购买下载,可以购买VIP、付费专栏及课程。

余额充值