Friday, October 9, 2015

Implementing the Singleton pattern

This pattern restricts the instantiation of a class to one single object.  In a single thread environment the constructor is typically private and a static instance is initialized only once by checking its nullness.

No comments:

Post a Comment