橋接模式(Bridge)

橋接模式git

一.橋接模式

1.1 定義

  • 把抽象化和實現化解耦,使得兩者能夠獨立變化.

1.2 角色

  • 業務抽象角色(Implementor).
  • 業務實現角色(Abstraction).

二. 具體實現

2.1 建立業務實現的接口

public interface IImplementor {
        void print();
    }

2.2 建立業務實現的具體實現類

public class ImplementorA implements IImplementor{
        @Override
        public void print() {
            System.out.println(this.getClass().getSimpleName());
        }
    }
    public class ImplementorB implements IImplementor{
        @Override
        public void print() {
            System.out.println(this.getClass().getSimpleName());
        }
    }

2.3 建立業務抽象的抽象類

public abstract class Abstraction {
        IImplementor implementor;
        public void print(){
            implementor.print();
        }
    }

2.4 建立業務抽象的實現類

public class ConcreteAbstraction extends Abstraction{
        public ConcreteAbstraction(IImplementor implementor){
            super.implementor = implementor;
        }
        public void print(){
            super.print();
        }
    }

2.5 調用

public static void main(String[] args) {
        Abstraction abstraction = new ConcreteAbstraction(new ImplementorA());
        abstraction.print();
        abstraction = new ConcreteAbstraction(new ImplementorB());
        abstraction.print();
    }

2.6 輸出

ImplementorA
    ImplementorB

三. 優缺點

3.1 優勢

  • 抽象與實現的解耦.

3.2 缺點

  • 增長系統設計難度.

四. 源碼

https://github.com/Seasons20/DisignPattern.git

ENDgithub

相關文章
相關標籤/搜索