What is a singleton class in Java? And How to implement a singleton class?
Answers were Sorted based on User's Feedback
Answer / nashiinformaticssolutions
A singleton class is one that can only have one object at a time. The following procedures must be followed in order to implement a singleton class:
Verify that there is only one object in the class.
Allow the item to be accessed globally.
| Is This Answer Correct ? | 0 Yes | 0 No |
Answer / nashiinformaticssolutions
A class that can possess only one object at a time is called a singleton class. To implement a singleton class given steps are to be followed:
1. Make sure that the class has only one object
2. Give global access to that object
| Is This Answer Correct ? | 0 Yes | 0 No |
What are class types in java?
Are registers volatile?
Why we used break and continue statement in java?
How to handle a web browser resize operation?
Can constructor be static or final?
Which language is java?
What is isa relationship?
What is the file type?
What is singleton class in java and how can we make a class singleton?
In a program, initializing an array of 100 KB is throwing an out of memory exception while there is 100 MB of memory available. Why?
How to sort elements in a parallel array in java?
class a extends b { } class b extends a { } why java doesn't support cyclic pls explain me with example