What is the singleton class in java?
Answers were Sorted based on User's Feedback
Answer / leelanarasimhareddy
A singleton is a class for which only one instance can exist
within a program. In other words, only one, single object of
that particular class can be created in a program.
| Is This Answer Correct ? | 7 Yes | 0 No |
Answer / naman patidar
A singleton class can never have more then one instance.
Example :
class SingletonClass {
private static SingletonClass singleObject;
public static SingletonClass getInstance() {
if (singleObject == null) {
singleObject = new SingletonClass();
}
return singleObject;
}
}
| Is This Answer Correct ? | 3 Yes | 2 No |
Answer / paletipatisrinu
singleton class:A java class create only one object per jvm
is called singleton java class.Most of jdbc driver class
implemented as a singleton java class
Ex:
class SingletonClass
{
private static SingletonClass singleObject;
public static SingletonClass getInstance()
{
if (singleObject == null)
{
singleObject = new SingletonClass();
}
return singleObject;
}
}
Singletone java class example is
org.apache.struts.action.ActionServlet
| Is This Answer Correct ? | 2 Yes | 1 No |
Can a method be static and synchronized?
What is lambda value?
What is the difference between Logical Parallelism and Physical Parallelism?
What is gpt and gpc? : java security
What is java flatmap?
How do I create an executable jar file?
How do you create a jar file?
what are the types of constructer explain with example
Explain the inheritance principle.
Is lambda cheaper than ec2?
Are streams faster than for loops?
how can we create the ui using netbeans,having the code?