Example of Factory Pattern in C++

This article presents the Factory Pattern in C++, a popular design pattern that helps create objects without specifying the exact class of the object. This increases flexibility and extensibility in the codebase.

The Factory Pattern is a design pattern that separates the process of creating an object from its usage. In this article, we will explore how to use the Factory Pattern to create different objects through a factory class.

C++ code

#include <iostream>
#include <memory>
#include <string>

// Interface for product
class Shape {
public:
    virtual void draw() = 0; // Pure virtual method
    virtual ~Shape() {}
};

// Concrete product class: Circle
class Circle : public Shape {
public:
    void draw() override {
        std::cout << "Drawing a circle." << std::endl;
    }
};

// Concrete product class: Square
class Square : public Shape {
public:
    void draw() override {
        std::cout << "Drawing a square." << std::endl;
    }
};

// Factory class
class ShapeFactory {
public:
    // Shape creation method
    std::unique_ptr<Shape> createShape(const std::string& shapeType) {
        if (shapeType == "Circle") {
            return std::make_unique<Circle>();
        } else if (shapeType == "Square") {
            return std::make_unique<Square>();
        }
        return nullptr; // If no shape type is found
    }
};

int main() {
    ShapeFactory shapeFactory;

    // Create a circle
    auto shape1 = shapeFactory.createShape("Circle");
    shape1->draw();

    // Create a square
    auto shape2 = shapeFactory.createShape("Square");
    shape2->draw();

    return 0;
}

Detailed explanation

  • Interface Shape: Defines the draw() method that all shapes will implement.
  • Classes Circle and Square: Inherit from Shape, providing implementations for the draw() method.
  • Class ShapeFactory: Contains the createShape() method that takes a shape type and returns the corresponding object.
  • In the main() function: Uses ShapeFactory to create specific shapes and calls their draw() method.

System Requirements:

  • A C++ compiler supporting C++11 or later.

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

This program does not require any external libraries. You only need a C++ compiler like g++.

Tips:

  • The Factory Pattern is very useful in large applications where creating complex objects can make the code hard to maintain. Use this design pattern when you need to create many different types of objects without being tied to a specific class.


Related

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.
JSON Web Token Authentication with C++

This guide provides steps to implement JSON Web Token (JWT) authentication in C++ for user authentication, including how to create and verify tokens using popular C++ libraries.
How to POST data to an API using C++ with libcurl

A guide on how to send data to an API using the POST method in C++ with the libcurl library. This article will help you understand how to configure and send HTTP POST requests to a RESTful API.
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.
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.
Preventing XSS (Cross-site Scripting) in C++

A guide on techniques to prevent XSS (Cross-site Scripting) in C++ applications, helping to protect web applications from attacks by controlling and encoding user input. This article provides methods and illustrative examples to enhance security.
Paginate MySQL query results in C++

A detailed guide on how to paginate MySQL query results in C++ using Prepared Statements. This article helps you understand how to query data and efficiently paginate results when working with MySQL in C++.
All Methods for String Concatenation in C++

This article compiles all methods for string concatenation in C++, helping you understand the different methods from basic to advanced, including using the `+` operator, the `append()` function, and methods from the `string` library.
Create a Simple Chat Application Using Socket.IO in C++

A guide on how to create a simple chat application using C++ with Socket.IO, helping you to understand more about network programming and real-time communication.
Fetching Data from MySQL Database in C++

A detailed guide on how to fetch data from a MySQL database using C++ with Prepared Statements. The article helps you understand how to connect, execute queries, and handle results using MySQL Connector/C++.

main.add_cart_success