What is singleton class?
Answer Posted / marshallsudhan
singleton class - has single Instance.
The Singleton is a useful Design Pattern for allowing only
one instance of your class, but common mistakes can
inadvertently allow more than one instance to be created.
The Singleton's purpose is to control object creation,
limiting the number to one but allowing the flexibility to
create more objects if the situation changes. Since there
is only one Singleton instance, any instance fields of a
Singleton will occur only once per class, just like static
fields.
//Eg Pgm.
class Sample
{
void m1()
{
System.out.println("Method m1");
}
void m2()
{
System.out.println("Method m2");
}
private Sample()
{
System.out.println("Constructor");
}
public static void main(String[] args)
{
Sample s = new Sample();
s.m1();
s.m2();
}
| Is This Answer Correct ? | 49 Yes | 74 No |
Post New Answer View All Answers
Is string passed by reference in java?
Can we define static methods inside interface?
How many arguments can be passed to main ()?
What is the difference between inheritance and encapsulation?
Is c better than java?
What is a treemap in java?
What is an infinite loop? How infinite loop is declared?
What do you understand by classes in java?
What do you understand by soft reference?
What is map java?
What is the core java?
How does java enable high performance?
What is the scope or life time of instance variables?
What is the difference between declaration and definition in java?
What is stringreader?