Example of Strategy Pattern in C++

This article introduces the Strategy Pattern in C++, explaining how it works and providing a specific illustrative example to help you better understand this design pattern in object-oriented programming.

The Strategy Pattern is a design pattern that allows changing the behavior of an object at runtime. This pattern is often used to separate algorithms from the class that uses them, making it easier to extend and maintain code. In this article, we will learn how to implement the Strategy Pattern in C++ through a simple example.

C++ code

#include <iostream>
#include <memory>

// Base Strategy
class Strategy {
public:
    virtual void execute() = 0; // Pure virtual function
};

// Concrete Strategy A
class ConcreteStrategyA : public Strategy {
public:
    void execute() override {
        std::cout << "Executing Strategy A" << std::endl;
    }
};

// Concrete Strategy B
class ConcreteStrategyB : public Strategy {
public:
    void execute() override {
        std::cout << "Executing Strategy B" << std::endl;
    }
};

// Context using the strategy
class Context {
private:
    std::unique_ptr<Strategy> strategy; // Smart pointer to Strategy

public:
    void setStrategy(std::unique_ptr<Strategy> newStrategy) {
        strategy = std::move(newStrategy);
    }

    void executeStrategy() {
        if (strategy) {
            strategy->execute();
        } else {
            std::cout << "Strategy not set!" << std::endl;
        }
    }
};

int main() {
    Context context;

    context.setStrategy(std::make_unique<ConcreteStrategyA>());
    context.executeStrategy(); // Output: Executing Strategy A

    context.setStrategy(std::make_unique<ConcreteStrategyB>());
    context.executeStrategy(); // Output: Executing Strategy B

    return 0;
}

Detailed explanation

  1. Strategy: The base class with a pure virtual method execute(), defining the interface for specific strategies.
  2. ConcreteStrategyA and ConcreteStrategyB: Concrete classes inheriting from Strategy, defining different behaviors for the execute() method.
  3. Context: This class contains a smart pointer strategy, allowing the setup and execution of the strategy.
  4. setStrategy(): A method used to set a new strategy for the context.
  5. executeStrategy(): A method that calls the behavior of the strategy that has been set.
  6. In main(), we create a Context, set different strategies, and call the executeStrategy() method to execute.

System Requirements:

  • C++11 or later

How to install the libraries needed to run the C++ code above:

The above code uses basic C++ features and does not require any external libraries to be installed.

Tips:

  • The Strategy Pattern is very useful when you need to change an algorithm or behavior of an object without changing its source code.
  • Consider using smart pointers (std::unique_ptr) to manage resources safely.


Related

Generate Captcha Using C++

A guide on how to create a Captcha using C++ with graphics libraries to generate random text and images, providing protection against automated attacks for web applications or software.
Get the last character of a string in C++

A guide on how to retrieve the last character of a string in C++ using methods and syntax from the `string` library. This article helps you understand string manipulation and character access in C++.
How to Write Data to an Excel File Using C++

A detailed guide on writing data to an Excel file using C++ and the openxlsx library. This article provides the necessary steps to create and write data to an Excel file easily.
Multithreading in C++

A detailed guide on handling multithreading in C++ using the `thread` library. This article helps you understand how to use multithreading to improve concurrent processing efficiency.
How to pass Authentication Header Token when POSTing data to API using Node.js

A step-by-step guide on how to pass an Authentication Token in the header while POSTing data to an API using Node.js. The article demonstrates how to use the `axios` or `http` package to perform authenticated HTTP requests.
Convert Unicode Accented Characters to Unaccented in C++

A detailed guide on converting Unicode accented characters to unaccented characters in C++ using the `` library. This article helps you handle Vietnamese text more effectively.
Common Functions When Using Selenium Chrome in C++

This article lists the common functions used when working with Selenium Chrome in C++, helping readers quickly grasp the necessary operations for browser automation.
Convert Markdown to HTML in C++

A detailed guide on how to convert Markdown strings to HTML using C++. This article will help you grasp how to use a Markdown library to perform the conversion easily and efficiently.
Example of Singleton Pattern in C++

This article introduces the Singleton Pattern in C++, including its implementation and application in object management. The Singleton Pattern ensures that a class has only one instance and provides a global access point to it.
Example of Object-Oriented Programming (OOP) in C++

This article provides an illustrative example of object-oriented programming (OOP) in C++, covering concepts such as classes, objects, inheritance, and polymorphism.

main.add_cart_success