1
vote
Yeah.. I know.. I’m a simpleton.. So what’s a Singleton?
A singleton is a class, that can only have a single instance created.
This is often implemented by having a private constructor, which is assigned to a static variable, and then accessible …
