C++設計模式淺識橋接模式

來源:互聯網
上載者:User
合成/彙總複用原則(CARP):

優先使用合成/彙總,而不是使用類繼承。

彙總表示一種弱的”擁有關係”,體現的是A對象可以包含B對象,但B對象不是A對象的一部分。

合成表示一種強的”擁有關係”,體現了嚴格的部分和整體的關係,部分和整體的生命週期一樣。

其好處:優先使用對象的合成/彙總將有助於你保持每個類被封裝,並被集中在單個任務上。這樣類和類繼承層次會保持較小規模,並且不太可能增長為不可控制的龐然大物,而繼承就有可能。

繼承是一種強耦合的結構,父類變,子類就要變。使用繼承時,一定要在是‘is-a’的關係時再考慮使用,而不是任何時候都去使用。

橋接模式(Bridge):將抽象部分與它的實現部分分離,使它們都可以獨立地變化。

實現指的是抽象類別和它的衍生類別用來實現自己的對象。

測試案例:

[code]int main(){    ConerectImplementorA *A = new ConerectImplementorA;    ConerectImplementorB *B = new ConerectImplementorB;    Abstraction *abs = new Abstraction;    abs->setImplementor(A);    abs->Operation();  //Output: ConerectImplementorA.    Abstraction *abs2 = new Abstraction;    abs2->setImplementor(B);    abs2->Operation();  //Output: ConerectImplementorB.    return 0;}

模式實現

[code]//Implementor類,實作類別class Implementor{public:    virtual void Operator(){          }};//具體實作類別Aclass ConerectImplementorA: public Implementor{    virtual void Operator(){        std::cout << "ConerectImplementorA.\n";    }  };//具體實作類別Bclass ConerectImplementorB: public Implementor{    virtual void Operator(){        std::cout << "ConerectImplementorB.\n";    }};//抽象類別->橋接Implementor類class Abstraction{protected:    Implementor *imp;    public:    void setImplementor(Implementor *imp){        this->imp = imp;    }    virtual void Operation(){        imp->Operator();    }};//被提煉的對象class RefinedAbstraction: public Abstraction{    virtual void Operation()override{        imp->Operator();    }};

總結:實現系統可能有多角度分類,每一種分類都有可能變化,那麼就把這種多角度分離出來讓他們獨立變化,減少它們之間的耦合。

以上就是C++設計模式淺識橋接模式的內容,更多相關內容請關注topic.alibabacloud.com(www.php.cn)!

  • 相關文章

    聯繫我們

    該頁面正文內容均來源於網絡整理,並不代表阿里雲官方的觀點,該頁面所提到的產品和服務也與阿里云無關,如果該頁面內容對您造成了困擾,歡迎寫郵件給我們,收到郵件我們將在5個工作日內處理。

    如果您發現本社區中有涉嫌抄襲的內容,歡迎發送郵件至: info-contact@alibabacloud.com 進行舉報並提供相關證據,工作人員會在 5 個工作天內聯絡您,一經查實,本站將立刻刪除涉嫌侵權內容。

    A Free Trial That Lets You Build Big!

    Start building with 50+ products and up to 12 months usage for Elastic Compute Service

    • Sales Support

      1 on 1 presale consultation

    • After-Sales Support

      24/7 Technical Support 6 Free Tickets per Quarter Faster Response

    • Alibaba Cloud offers highly flexible support services tailored to meet your exact needs.