Should a Singleton class be allowed to have children? Should we seal it? What are the pro\'s and con\'s?
For being able to inherit from a Singleton class, we would h
If you want to use inheritance in conjunction with the singleton pattern, you should put the inheritable state and behaviour into an abstract base class and define the singletons as (final) subclasses.