桥接模式(大话设计模式)C/C++版本

桥接模式

C++

cpp 复制代码
#include <iostream>
using namespace std;

class HandsetSoft // 手机软件
{
public:
    virtual ~HandsetSoft() = default;
    virtual void Run() = 0;
};

class HandsetGame : public HandsetSoft // 手机游戏
{
public:
    void Run() override
    {
        cout << "运行手机游戏!" << endl;
    }
};

class HandsetAddressList : public HandsetSoft // 手机通讯录
{
public:
    void Run() override
    {
        cout << "运行手机通讯录!" << endl;
    }
};

class HandsetBrand // 手机品牌类
{
protected:
    HandsetSoft *m_soft; // 手机品牌中包含着手机通讯录和手机游戏
public:
    virtual ~HandsetBrand() = default;
    void SetHandsetSoft(HandsetSoft *soft)
    {
        m_soft = soft;
    }
    virtual void Run() = 0;
};

class HandsetBrandN : public HandsetBrand // 手机品牌 N
{
public:
    void Run() override
    {
        m_soft->Run();
    }
};

class HandsetBrandM : public HandsetBrand // 手机品牌M
{
public:
    void Run() override
    {
        m_soft->Run();
    }
};

int main()
{
    cout << "手机品牌N:" << endl;
    HandsetBrand *abn = new HandsetBrandN();
    HandsetGame *hgn = new HandsetGame();
    abn->SetHandsetSoft(hgn);
    abn->Run();

    HandsetAddressList *haln = new HandsetAddressList();

    abn->SetHandsetSoft(haln);
    abn->Run();

    cout << endl
         << "手机品牌M:" << endl;
    HandsetBrand *abm = new HandsetBrandM();
    HandsetGame *hgm = new HandsetGame();
    abm->SetHandsetSoft(hgm);
    abm->Run();

    HandsetAddressList *halm = new HandsetAddressList();
    abm->SetHandsetSoft(halm);
    abm->Run();
    delete abn;
    delete hgn;
    delete haln;
    delete abm;
    delete hgm;
    delete halm;
    return 0;
}

C

c 复制代码
#include <stdio.h>

// 手机软件抽象基类
typedef struct HandsetSoft
{
    void (*run)(struct HandsetSoft *self); // 虚函数表
} HandsetSoft;

// 手机游戏类
typedef struct HandsetGame
{
    HandsetSoft base;
} HandsetGame;

void run_game(HandsetSoft *self)
{
    printf("运行手机游戏!\n");
}

// 手机通讯录类
typedef struct HandsetAddressList
{
    HandsetSoft base;
} HandsetAddressList;

void run_address_list(HandsetSoft *self)
{
    printf("运行手机通讯录!\n");
}

// 手机品牌基类
typedef struct HandsetBrand
{
    HandsetSoft *m_soft;
} HandsetBrand;

void set_handset_soft(HandsetBrand *self, HandsetSoft *soft)
{
    self->m_soft = soft;
}

// 手机品牌N类
typedef struct HandsetBrandN
{
    HandsetBrand base;
} HandsetBrandN;

void run_brandN(HandsetBrand *self)
{
    self->m_soft->run(self->m_soft);
}

// 手机品牌M类
typedef struct HandsetM
{
    HandsetBrand base;
} HandsetM;

void run_brandM(HandsetBrand *self)
{
    self->m_soft->run(self->m_soft);
}

int main()
{
    // 初始化手机软件
    HandsetSoft game_software = {.run = run_game};
    HandsetSoft address_list_software = {.run = run_address_list};
    HandsetGame game = {.base = game_software};
    HandsetAddressList address_list = {.base = address_list_software};

    // 初始化手机品牌N
    HandsetBrandN brandN = {};
    set_handset_soft((HandsetBrand *)&brandN, (HandsetSoft *)&game);
    printf("手机品牌N:\n");
    run_brandN((HandsetBrand *)&brandN);
    set_handset_soft((HandsetBrand *)&brandN, (HandsetSoft *)&address_list);
    run_brandN((HandsetBrand *)&brandN);

    // 初始化手机品牌M
    HandsetM brandM = {};
    set_handset_soft((HandsetBrand *)&brandM, (HandsetSoft *)&game);
    printf("\n手机品牌M:\n");
    run_brandM((HandsetBrand *)&brandM);
    set_handset_soft((HandsetBrand *)&brandM, (HandsetSoft *)&address_list);
    run_brandM((HandsetBrand *)&brandM);

    return 0;
}
相关推荐
何其有幸.6 小时前
实验3-3 比较大小(PTA|C语言)
c语言·数据结构·算法
东阳马生架构7 小时前
Sentinel源码—8.限流算法和设计模式总结二
算法·设计模式·sentinel
何其有幸.8 小时前
实验6-3 使用函数求特殊a串数列和(PTA|C语言)
c语言·数据结构·算法
冰茶_8 小时前
C#中常见的设计模式
java·开发语言·microsoft·设计模式·微软·c#·命令模式
.似水9 小时前
2025.4.22_C_可变参数列表
java·c语言·算法
Niuguangshuo9 小时前
Python 设计模式:访问者模式
python·设计模式·访问者模式
不当菜虚困9 小时前
JAVA设计模式——(七)代理模式
java·设计模式·代理模式
小鹿鹿啊10 小时前
C语言编程--14.电话号码的字母组合
c语言·开发语言·算法
一只鱼^_11 小时前
第十六届蓝桥杯大赛软件赛省赛 C/C++ 大学B组 [京津冀]
c语言·数据结构·c++·算法·贪心算法·蓝桥杯·动态规划
RationalDysaniaer11 小时前
Go设计模式-观察者模式
观察者模式·设计模式·golang