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
What do you mean by platform independence? What is an interface?
Can we force the garbage collection to run?
how can you catch multiple exceptions in java?
What is the difference between declaration and definition in java?
Considering notepad/ie or any other thing as process, what will happen if you start notepad or ie 3 times? Where 3 processes are started or 3 threads are started?
What is primitive array?
Can you pass functions in java?
What is serial version uid and its importance in java?
What is local declaration?
Which container method is used to cause a container to be laid out and redisplayed in java programming?
What are byte codes?
Which is better list or arraylist in java?
What are abstract classes and anonymous classes?
What is int short for?
What is enhanced loop in java?