DEV Community

Harsh Mange
Harsh Mange

Posted on • Originally published at harshmange.hashnode.dev on

What is Singleton Design Pattern?

The Singleton pattern is a creational design pattern that ensures a class has only one instance and provides a global point of access to that instance. In simpler terms, it restricts the instantiation of a class to a single instance and ensures that the single instance is easily accessible to other parts of the application.

The Singleton pattern is useful in situations where there is a need for one and only one instance of a class to exist throughout the lifetime of the application. It is often used for managing resources that are expensive to create, such as database connections or network sockets. It is also useful in cases where we need to maintain a global state, such as a configuration or cache.

Benefits

  1. Single Instance: As previously mentioned, the Singleton pattern ensures that only one instance of a class exists in the application, making it easier to manage and access.

  2. Global Access: The single instance is easily accessible throughout the application, making it easier to maintain global state or resources.

  3. Lazy Loading: The Singleton pattern allows for lazy loading, which means that the instance is only created when it is first accessed, rather than being created at the start of the application.

  4. Thread Safety: The Singleton pattern can be implemented in a thread-safe manner, ensuring that multiple threads cannot create multiple instances of the Singleton.

  5. Simplified Code: The Singleton pattern simplifies the code by reducing the number of global variables needed.

Examples

Example 1: Database Connection Pool In a web application, it is common to use a connection pool for database connections. The connection pool is a Singleton, which ensures that there is only one instance of the pool throughout the application. This reduces the overhead of creating and destroying database connections, which can be expensive.

Example 2: Logger Logging is an important part of any application. A logger is typically implemented as a Singleton, which ensures that there is only one instance of the logger throughout the application. This makes it easier to manage the logging output and configuration.

Example 3: Configuration Manager A configuration manager is a common requirement in many applications. The configuration manager is typically implemented as a Singleton, which ensures that there is only one instance of the configuration manager throughout the application. This makes it easier to manage the configuration settings, and the Singleton pattern ensures that the settings are consistent throughout the application.

Implementation

There are several ways to implement the Singleton pattern in different programming languages. The most common approach is to use a static variable or a private constructor. Here is an example implementation of a Singleton in Java:

public class Singleton {
    private static Singleton instance;

    private Singleton() {
        // private constructor to prevent instantiation
    }

    public static Singleton getInstance() {
        if (instance == null) {
            instance = new Singleton();
        }
        return instance;
    }
}

Enter fullscreen mode Exit fullscreen mode

In this implementation, the Singleton class has a private constructor, which prevents the class from being instantiated from outside the class. The class also has a static variable instance, which holds the single instance of the class. The getInstance() method checks if the instance variable is null and creates a new instance if it is. If the instance variable is not null, it returns the existing instance.

Top comments (0)