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 does the exclamation mark mean in java?
What is == mean?
What is difference in between java class and bean?
How do you create a null object?
Does java runtime require a license?
Are global variables initialized to zero?
Can we execute a program without main?
How do you achieve polymorphism in java?
What are the 6 functions?
Implement two stacks using a single array.
hr interview how many minutes asking question
What is the collections api?