首页 | 编程语言 | 网站建设 | 游戏天堂 | 冲浪宝典 | 网络安全 | 操作系统 | 软件时空 | 硬件指南 | 病毒相关 | IT 认证
软讯网络 > 编程语言 > C/C++ > 常见设计模式的解析和实现(七)-Bridge模式
【标  题】:常见设计模式的解析和实现(七)-Bridge模式
【关键字】:-Bridge
【来  源】:http://www.cppblog.com/converse/archive/2006/07/23/10376.html

常见设计模式的解析和实现(七)-Bridge模式

C++博客 - 创系的技术博客 - 常见设计模式的解析和实现(七)-Bridge模式
有勇气来改变可以改变的事情,有胸怀来接受不可改变的事情,有智慧来分辨两者的不同。
作用:
将抽象部分与它的实现部分分离,使它们都可以独立地变化。

UML结构图:


抽象基类:
1)Abstraction:某个抽象类,它的实现方式由Implementor完成.
2)Implementor:实现类的抽象基类,定义了实现Abastraction的基本操作,而它的派生类实现这些接口.

接口函数:
1)Implementor::OperationImpl:定义了为实现Abstraction需要的基本操作,由Implementor的派生类实现之,而在Abstraction::Operation函数中根据不同的指针多态调用这个函数.

解析:
Bridge用于将表示和实现解耦,两者可以独立的变化.在Abstraction类中维护一个Implementor类指针,需要采用不同的实现方式的时候只需要传入不同的Implementor派生类就可以了.

Bridge的实现方式其实和Builde十分的相近,可以这么说:本质上是一样的,只是封装的东西不一样罢了.两者的实现都有如下的共同点:抽象出来一个基类,这个基类里面定义了共有的一些行为,形成接口函数(对接口编程而不是对实现编程),这个接口函数在Buildier中是BuildePart函数在Bridge中是OperationImpl函数;其次,聚合一个基类的指针,如Builder模式中Director类聚合了一个Builder基类的指针,而Brige模式中Abstraction类聚合了一个Implementor基类的指针(优先采用聚合而不是继承);而在使用的时候,都把对这个类的使用封装在一个函数中,在Bridge中是封装在Director::Construct函数中,因为装配不同部分的过程是一致的,而在Bridge模式中则是封装在Abstraction::Operation函数中,在这个函数中调用对应的Implementor::OperationImpl函数.就两个模式而言,Builder封装了不同的生成组成部分的方式,而Bridge封装了不同的实现方式.

因此,如果以一些最基本的面向对象的设计原则来分析这些模式的实现的话,还是可以看到很多共同的地方的.

实现:
1)Bridge.h
/********************************************************************
????created:????2006/07/20
????filename:?????Brige.h
????author:????????李创
????????????????
http://www.cppblog.com/converse/

????purpose:????Brige模式的演示代码
********************************************************************
*/


#ifndef?BRIDEG_H
#define?BRIDEG_H

class?Implementor;

//?维护一个Implementor类的指针
class?Abstraction
{
public:
????Abstraction(Implementor
*?pImplementor);
????
virtual?~Abstraction();

????
void?Operation();

protected:
????Implementor
*?m_pImplementor;
}
;

//?为实现Abstraction定义的抽象基类,定义了实现的接口函数
class?Implementor
{
public:
????Implementor()
{}
????
virtual?~Implementor(){}

????
virtual?void?OperationImpl()?=?0;
}
;

//?继承自Implementor,是Implementor的不同实现之一
class?ConcreateImplementorA
????:?
public?Implementor
{
public:
????ConcreateImplementorA()
{}
????
virtual?~ConcreateImplementorA(){}

????
virtual?void?OperationImpl();
}
;

//?继承自Implementor,是Implementor的不同实现之一
class?ConcreateImplementorB
????:?
public?Implementor
{
public:
????ConcreateImplementorB()
{}
????
virtual?~ConcreateImplementorB(){}

????
virtual?void?OperationImpl();
}
;

#endif

2)Bridge.cpp
/********************************************************************
????created:????2006/07/20
????filename:?????Brige.cpp
????author:????????李创
????????????????
http://www.cppblog.com/converse/

????purpose:????Brige模式的演示代码
********************************************************************
*/


#include?
"Brige.h"
#include?
<iostream>

void?ConcreateImplementorA::OperationImpl()
{
????std::cout?
<<?"Implementation?by?ConcreateImplementorA\n";
}


void?ConcreateImplementorB::OperationImpl()
{
????std::cout?
<<?"Implementation?by?ConcreateImplementorB\n";
}


Abstraction::Abstraction(Implementor
*?pImplementor)
????:?m_pImplementor(pImplementor)
{
}


Abstraction::
~Abstraction()
{
????delete?m_pImplementor;
????m_pImplementor?
=?NULL;
}


void?Abstraction::Operation()
{
????m_pImplementor
->OperationImpl();
}

3)Main.cpp
/********************************************************************
????created:????2006/07/20
????filename:?????Main.cpp
????author:????????李创
????????????????
http://www.cppblog.com/converse/

????purpose:????Bridge模式的测试代码
********************************************************************
*/


#include?
"Brige.h"
#include?
<stdlib.h>

int?main()
{
????ConcreateImplementorA?
*pImplA?=?new?ConcreateImplementorA();
????Abstraction?
*pAbstraction1?=?new?Abstraction(pImplA);
????pAbstraction1
->Operation();

????ConcreateImplementorB?
*pImplB?=?new?ConcreateImplementorB();
????Abstraction?
*pAbstraction2?=?new?Abstraction(pImplB);
????pAbstraction2
->Operation();

????delete?pAbstraction1;
????delete?pAbstraction2;

????system(
"pause");

????
return?0;
}
posted on 2006-07-23 21:01 创系 阅读(35) 评论(0)  编辑 收藏 收藏至365Key 所属分类: 设计模式
【相关文章】
  • 设计范式笔记-Bridge
  • 【相关评论】
    没有相关评论
    【发表评论】
    姓名:
    邮件:
    随机码*
    评论*
          
    |  首 页  |  版权声明  |  联系我们   |  网站地图  |
    CopyRight © 2004-2007 软讯网络 All Rigths Reserved.