Java / Design Patterns
Which classes are candidates of Singleton?
Any class that needs to be available to the entire application and only one instance should exist is the ideal candidate for becoming Singleton. One example of this is Runtime class that ensures only one Runtime environment available under JVM.
More Related questions...