行为型模式——中介者模式

中介者设计模式适用于以下情况:

• 一组对象以定义良好但复杂的方式进行通信,产生的相互依赖关系结构混乱且难以理解;

• 一个对象引用其他很多对象并且直接与这些对象通信,导致难以复用该对象;

• 想定制一个分布在多个类中的行为,而又不想生成太多的子类;

下面是一个中介者模式的示例程序:

cpp 复制代码
#include <iostream>
#include <string>
#include <vector>
#include <memory>

class User; // Forward declaration

// =================================================================
// Step 1: THE MEDIATOR INTERFACE
// =================================================================
// Defines how components communicate with the central manager.
class ChatRoomMediator {
public:
    virtual ~ChatRoomMediator() = default;
    
    // Sends a message from a specific sender to everyone else
    virtual void sendMessage(const std::string& message, User* sender) = 0;
};


// =================================================================
// Step 2: THE BASE COMPONENT CLASS (Colleague)
// =================================================================
// Objects that use the mediator to talk to each other.
class User {
protected:
    std::string name_;
    ChatRoomMediator& mediator_; // Reference to the central control tower

public:
    User(const std::string& name, ChatRoomMediator& mediator) 
        : name_(name), mediator_(mediator) {}
        
    virtual ~User() = default;

    std::string getName() const { return name_; }

    // Send a message out to the world (routed via the mediator)
    void send(const std::string& message) {
        std::cout << "\n[" << name_ << " sends]: " << message << "\n";
        mediator_.sendMessage(message, this);
    }

    // Receive a message coming in from the mediator
    void receive(const std::string& message, const std::string& fromWho) {
        std::cout << "  -> " << name_ << " received a message from " << fromWho << ": \"" << message << "\"\n";
    }
};


// =================================================================
// Step 3: THE CONCRETE MEDIATOR
// =================================================================
// Implements coordination logic by holding a list of all chatters.
class TextChatRoom : public ChatRoomMediator {
private:
    std::vector<User*> users_; // Tracks all active colleagues in the room

public:
    void addUser(User* user) {
        users_.push_back(user);
    }

    void sendMessage(const std::string& message, User* sender) override {
        // Broadcast the message to every user EXCEPT the person who sent it
        for (User* user : users_) {
            if (user != sender) {
                user->receive(message, sender->getName());
            }
        }
    }
};


// =================================================================
// Step 4: CLIENT CODE
// =================================================================
int main() {
    // 1. Set up the central control tower (the mediator)
    TextChatRoom codingChatRoom;

    // 2. Create users and hook them up to the central chat room
    User alice("Alice", codingChatRoom);
    User bob("Bob", codingChatRoom);
    User charlie("Charlie", codingChatRoom);

    // 3. Register users inside the mediator's tracking list
    codingChatRoom.addUser(&alice);
    codingChatRoom.addUser(&bob);
    codingChatRoom.addUser(&charlie);

    std::cout << "=== Chat Room Activity Started ===\n";

    // 4. Users send messages. Notice they never directly interact with each other!
    alice.send("Hey everyone! Are we ready for the code review?");
    bob.send("Yes, looks good to me.");

    return 0;
}

程序运行结果如下:

shell 复制代码
$ g++ -o main main.cpp
$ ./main
=== Chat Room Activity Started ===

[Alice sends]: Hey everyone! Are we ready for the code review?
  -> Bob received a message from Alice: "Hey everyone! Are we ready for the code review?"
  -> Charlie received a message from Alice: "Hey everyone! Are we ready for the code review?"

[Bob sends]: Yes, looks good to me.
  -> Alice received a message from Bob: "Yes, looks good to me."
  -> Charlie received a message from Bob: "Yes, looks good to me."
相关推荐
David猪大卫8 小时前
【C++修炼】智能指针使用及原理
开发语言·c++·经验分享·笔记·学习·考研·面试
零衣贰9 小时前
The 2026 ICPC Asia East Continent Online Contest (I) 题解
c++·icpc
fpcc10 小时前
c++编程实践—统一初始化
服务器·c++
Zenova EdgeOS11 小时前
C++ 工业边缘 libcurl HTTP 客户端实战
开发语言·c++·网络协议·边缘计算
Jackson_GJH11 小时前
Qt 右键自定义菜单的实现
开发语言·c++·qt
张小姐的猫11 小时前
【AI大模型接入SDK】 —— Gemini接入封装
android·数据结构·数据库·c++·人工智能·python
一木 之林12 小时前
七、一-AI 工程实践、插件化调试与软件交付
java·linux·c++
Murphy_lx13 小时前
1124. 表现良好的最长时间段
c++·算法
luj_176816 小时前
一线一区一变破解人盯人防守密码
开发语言·网络·c++·经验分享·算法
广州山泉婚姻16 小时前
C/C++动态内存:堆内存的申请、使用与释放
c++·人工智能