亚洲激情专区-91九色丨porny丨老师-久久久久久久女国产乱让韩-国产精品午夜小视频观看

溫馨提示×

如何在C++中實現策略模式

c++
小樊
81
2024-08-29 18:49:18
欄目: 編程語言

策略模式(Strategy Pattern)是一種行為設計模式,它使你能在運行時改變對象的行為

下面是一個簡單的示例,展示了如何在C++中實現策略模式:

  1. 首先,定義一個策略接口:
#include<iostream>
#include<string>

// 策略接口
class Strategy {
public:
    virtual ~Strategy() = default;
    virtual void execute(const std::string& message) = 0;
};
  1. 然后,創建一些具體的策略類,實現上述接口:
// 具體策略A
class ConcreteStrategyA : public Strategy {
public:
    void execute(const std::string& message) override {
        std::cout << "Called ConcreteStrategyA with message: "<< message<< std::endl;
    }
};

// 具體策略B
class ConcreteStrategyB : public Strategy {
public:
    void execute(const std::string& message) override {
        std::cout << "Called ConcreteStrategyB with message: "<< message<< std::endl;
    }
};
  1. 創建一個上下文類,用于使用策略對象:
class Context {
public:
    Context(Strategy* strategy) : strategy_(strategy) {}

    void set_strategy(Strategy* strategy) {
        strategy_ = strategy;
    }

    void execute_strategy(const std::string& message) {
        strategy_->execute(message);
    }

private:
    Strategy* strategy_;
};
  1. 最后,在主函數中測試策略模式:
int main() {
    // 創建具體策略對象
    ConcreteStrategyA strategy_a;
    ConcreteStrategyB strategy_b;

    // 創建上下文對象,并設置具體策略
    Context context(&strategy_a);

    // 執行策略
    context.execute_strategy("Hello, Strategy A!");

    // 更改策略
    context.set_strategy(&strategy_b);

    // 再次執行策略
    context.execute_strategy("Hello, Strategy B!");

    return 0;
}

這個示例展示了如何使用策略模式來動態地改變對象的行為。你可以根據需要添加更多的具體策略類,并在上下文類中使用它們。

0
密山市| 江山市| 五寨县| 亚东县| 沙田区| 休宁县| 茶陵县| 长丰县| 庆元县| 扶风县| 巨野县| 宜兰县| 乐陵市| 中西区| 穆棱市| 察雅县| 原平市| 河池市| 靖远县| 沛县| 乐业县| 宜宾县| 油尖旺区| 肃宁县| 鸡东县| 新泰市| 集贤县| 普陀区| 寿阳县| 介休市| 天水市| 西充县| 洪泽县| 民丰县| 忻城县| 廊坊市| 合江县| 来安县| 稻城县| 井陉县| 商水县|