Northrop Grumman interview question

What is the singleton design pattern?

Interview Answer

Anonymous

18 Dec 2020

Design pattern where only a single instance of an object will be instantiated, which is enforced via private constructors.

1