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.

The Singleton Pattern is one of the most popular design patterns in object-oriented programming. This pattern ensures that a class has only one instance and provides a method to access that object. This article will present how to implement the Singleton Pattern in C++ with a specific example.

C++ code

#include <iostream>
#include <mutex>

class Singleton {
private:
    static Singleton* instance; // Pointer to the unique instance
    static std::mutex mtx; // Mutex for thread safety

    // Private constructor
    Singleton() {
        std::cout << "Constructor called" << std::endl;
    }

public:
    // Method to access the unique instance
    static Singleton* getInstance() {
        if (instance == nullptr) {
            std::lock_guard<std::mutex> lock(mtx); // Ensure thread safety
            if (instance == nullptr) {
                instance = new Singleton();
            }
        }
        return instance;
    }

    // Sample method
    void someBusinessLogic() {
        std::cout << "Processing business logic" << std::endl;
    }
};

// Initialize the pointer
Singleton* Singleton::instance = nullptr;
std::mutex Singleton::mtx;

int main() {
    // Get the instance of Singleton and perform some logic
    Singleton* singleton = Singleton::getInstance();
    singleton->someBusinessLogic();

    return 0;
}

Detailed explanation

  • static Singleton* instance: A static pointer that holds the unique instance of the Singleton class.
  • static std::mutex mtx: A mutex to ensure that multiple threads do not access the getInstance() method simultaneously.
  • Singleton(): A private constructor to prevent object creation outside of the class.
  • static Singleton* getInstance(): A static method to access the unique instance. It checks if the instance is created and creates it if necessary.
  • std::lock_guard<std::mutex> lock(mtx): Ensures thread safety when checking and creating the instance in a multithreaded environment.
  • someBusinessLogic(): An example method within the Singleton class.

System Requirements:

  • C++11 or later (to use std::mutex and std::lock_guard)

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

The above code does not require any external libraries. You only need to compile it with a compiler that supports C++11.

Tips:

  • The Singleton Pattern is useful when you need a single instance, such as a database connection manager or a global configuration.
  • Be careful when using Singleton in a multithreaded environment to avoid data safety issues.


Related

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.
How to append an Authentication Header Token when POSTing data to an API in C++

A guide on how to pass an authentication token via the Authentication Header when POSTing data to an API using C++. The example utilizes the `libcurl` library to perform HTTP requests with token-based authentication.
Updating Data in MySQL Using C++

A guide on how to update data in MySQL using C++ with Prepared Statements, ensuring security and efficiency when interacting with the database. This article provides a clear illustrative example.
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.
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.
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.
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.
How to open Notepad using C++

A guide on how to open the Notepad application using C++ on Windows by utilizing the `system()` function. This is a simple method to invoke system applications from a C++ program.
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++.
How to automatically log into a website using Selenium with Chrome in C++

A guide on using Selenium with ChromeDriver in C++ to automatically log into a website. The article explains how to set up Selenium and ChromeDriver and the steps to log in to a specific website.

main.add_cart_success