Golgappa.net | Golgappa.org | BagIndia.net | BodyIndia.Com | CabIndia.net | CarsBikes.net | CarsBikes.org | CashIndia.net | ConsumerIndia.net | CookingIndia.net | DataIndia.net | DealIndia.net | EmailIndia.net | FirstTablet.com | FirstTourist.com | ForsaleIndia.net | IndiaBody.Com | IndiaCab.net | IndiaCash.net | IndiaModel.net | KidForum.net | OfficeIndia.net | PaysIndia.com | RestaurantIndia.net | RestaurantsIndia.net | SaleForum.net | SellForum.net | SoldIndia.com | StarIndia.net | TomatoCab.com | TomatoCabs.com | TownIndia.com
Interested to Buy Any Domain ? << Click Here >> for more details...


What is singleton class?

Answers were Sorted based on User's Feedback



What is singleton class?..

Answer / muthu

hi,
this is muthu,

i have created singleton class A this class file warped
(warfile) and same singleton class A that class also warped
(warfile)so both war file deployed inthe Application server
then start the server.so how many instance create in JVM?
SO PLE KINDLY REPLAY TO ME...

THKS
MUTHU

Is This Answer Correct ?    0 Yes 0 No

What is singleton class?..

Answer / ashish srivastava

public class Singleton {

private static Singleton s = new Singleton();

private Singleton(){

}

public static Singleton getObject(){
return s;
}

}

Is This Answer Correct ?    0 Yes 0 No

What is singleton class?..

Answer / nagarjuna

Singletonclass is a class which can be instantiated only once.
public class Singleton
{
private static single = new Singleton();

Private Singleton();
{}
}

For a singleton class, the constructor is made private and
a static variable is used for instatiating the class.

Is This Answer Correct ?    4 Yes 6 No

What is singleton class?..

Answer / ajay

how constructor can be private???????

Is This Answer Correct ?    0 Yes 2 No

What is singleton class?..

Answer / 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

What is singleton class?..

Answer / ravikiran(aptech mumbai)

singleton class is the class contains only one object

Is This Answer Correct ?    39 Yes 71 No

Post New Answer

More Core Java Interview Questions

Differentiate between vector and array list.

0 Answers  


What are the escape sequences in java?

0 Answers  


What are the 3 types of loops in java?

0 Answers  


Are there any tools available in java to create reports?

5 Answers  


public class Garbage { int a=0; public void add() { int c=10+20; System.out.println(c); System.out.println(a); } public static void main(String args[]) { Garbage obj=new Garbage(); System.gc(); System.out.println("Garbage Collected"); obj.add(); } } Above is a code in java used for garbage collection. object obj has been created for the class Garbage and system.gc method is called. Then using that object add method is called.System.gc method if called the obj should be garbage collected?

6 Answers  


Why singleton class is used in java?

0 Answers  


What is covariant return type?

0 Answers  


What is static keyword?

0 Answers  


Can you make an instance of an abstract class?

5 Answers   Accenture,


What is bom encoding?

0 Answers  


how many ways we can serialize the java object?

2 Answers   Satyam,


How can you say HashMap is syncronized?

14 Answers   Arete, IBM,


Categories