0
votes
Which design patterns do you find yourself most frequently using?
Singleton. There really is only a few reasons to use it, but the frequency of use is astonishing.
…
0
votes
Is this a good use of the Singleton pattern?
That's not the pattern you should be using. I think you should try a state pattern instead. Singleton is for when you need access to a limited resource from many different places.
Like ope …
