Simple Singleton Design Pattern in C++
In this blog, I attempted to create a simple program implementing a singleton design pattern. In a Singleton Design Pattern, only one instance for a class exists.
This is achieved by
Private constructor
Private static object declared in the class
...
yosa.hashnode.dev2 min read