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

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

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

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

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

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

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."
相关推荐
海绵天哥2 小时前
LeetCode Hot 100 | 链表(下)· 分组翻转与设计(C++ 题解)
c++·leetcode·链表
Lee_jerome13 小时前
《C/C++编译全家桶:g++四阶段、.a与.so区别、CMake构建、ARM交叉编译,这篇全讲透了》
c语言·开发语言·arm开发·c++·编译·cmake·cmakelists
冰心孤城13 小时前
C++ 与 C#混合编程 示例 (基于VS)
java·c++·c#
一只旭宝17 小时前
C++手写shared_ptr共享智能指针|原子引用计数、强弱引用控制块、赋值重载底层深度剖析
开发语言·c++·面试
开发者联盟league17 小时前
Java 通过 JNA 调用 C++ DLL:关键流程总结
java·c++·jna
库克克18 小时前
【C++】智能指针
java·开发语言·c++
geovindu19 小时前
Java: Chain of Responsibility Pattern
java·开发语言·后端·设计模式·责任链模式·行为模式
一拳一个呆瓜20 小时前
【STL】iostream 编程:输入流成员函数
c++·stl
xiaoye-duck21 小时前
《Linux系统编程》Linux 系统多线程(七): C++ 线程安全日志系统封装:基于策略模式解耦,兼容 glog 使用风格
linux·c++·日志系统