大话设计模式--桥接模式 Bridge -- C++实现实例

1. 桥接模式: 将抽象部分与它的实现部分分离,使它们都可以独立的变化。

分离是指 抽象类和它的派生类用来实现自己的对象分离。

 

实现系统可以有多角度分类,每一种分类都有可能变化,那么把这种多角度分离出来让他们独立变化,减少他们之间的耦合。

 

 

实例:

implementor.h implementor.cpp  实现接口

#ifndef IMPLEMENTOR_H
#define IMPLEMENTOR_H

class Implementor
{
public:
    Implementor();
    void virtual operation()=0;
};

#endif // IMPLEMENTOR_H
#include "implementor.h"

Implementor::Implementor()
{
}

 

concreteimplementora.h concreteimplementora.cpp  具体实现功能A

#ifndef CONCRETEIMPLEMENTORA_H
#define CONCRETEIMPLEMENTORA_H

#include "implementor.h"

class ConcreteImplementorA : public Implementor
{
public:
    ConcreteImplementorA();
    void operation();
};

#endif // CONCRETEIMPLEMENTORA_H
#include "concreteimplementora.h"
#include <stdio.h>

ConcreteImplementorA::ConcreteImplementorA()
{
}

void ConcreteImplementorA::operation()
{
    printf("ConcreteImplementorA operation\n");
}

 

concreteimplementorb concreteimplementorb  具体实现功能B

#ifndef CONCRETEIMPLEMENTORB_H
#define CONCRETEIMPLEMENTORB_H

#include "implementor.h"

class ConcreteImplementorB : public Implementor
{
public:
    ConcreteImplementorB();
    void operation();
};

#endif // CONCRETEIMPLEMENTORB_H
#include "concreteimplementorb.h"
#include <stdio.h>

ConcreteImplementorB::ConcreteImplementorB()
{
}

void ConcreteImplementorB::operation()
{
    printf("ConcreteImplementorB operation\n");
}


abstraction.h abstraction.cpp 抽象

#ifndef ABSTRACTION_H
#define ABSTRACTION_H

#include "implementor.h"

class Abstraction
{
public:
    Abstraction();
    void setImplementor(Implementor *implementor);
    void virtual operation();

protected:
    Implementor *implementor;
};

#endif // ABSTRACTION_H
#include "abstraction.h"

Abstraction::Abstraction()
{
    implementor = 0;
}

void Abstraction::setImplementor(Implementor *implementor)
{
    this->implementor = implementor;
}

void Abstraction::operation()
{
    implementor->operation();
}

 

refinedabstraction.h refinedabstraction.cpp 精确抽象

#ifndef REFINEDABSTRACTION_H
#define REFINEDABSTRACTION_H

#include "abstraction.h"

class RefinedAbstraction : public Abstraction
{
public:
    RefinedAbstraction();
    void operation();
};

#endif // REFINEDABSTRACTION_H
#include "refinedabstraction.h"

RefinedAbstraction::RefinedAbstraction()
{
}

void RefinedAbstraction::operation()
{
    implementor->operation();
}

 

main.cpp

#include <iostream>
#include "refinedabstraction.h"
#include "concreteimplementora.h"
#include "concreteimplementorb.h"

using namespace std;

int main()
{
    cout << "Bridge test!" << endl;

    Abstraction *ab = new RefinedAbstraction();
    ab->setImplementor(new ConcreteImplementorA());
    ab->operation();

    ab->setImplementor(new ConcreteImplementorB());
    ab->operation();

    return 0;
}




 





 



 


评论
添加红包

请填写红包祝福语或标题

红包个数最小为10个

红包金额最低5元

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

抵扣说明:

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

余额充值