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?

Answer Posted / vimal eldose george

Singleton gives only one instance.

class Single{

static int objCreated = 0;
private Single(){
}
public static Single getThis(){
if(objCreated==0)
{
return new Single();
ob=1;
}else
{
return this;
}
}

}

Is This Answer Correct ?    32 Yes 17 No



Post New Answer       View All Answers


Please Help Members By Posting Answers For Below Questions

What happens if a try-catch-finally statement does not have a catch clause to handle an exception that is thrown within the body of the try statement?

1053


What do you mean by flow of struts?

1242


Discuss 2D arrays.

1010


How to store image in arraylist in java?

932


How do you sort data in java?

910


How do I find and replace in word?

932


Can a constructor be private and how are this() and super() method used with constructor?

948


What is rmi and steps involved in developing an rmi object?

1012


What is qms certification?

905


What does exclamation mean in java?

1033


What is the Scope of Static Variable?

1178


Why should we use singleton pattern instead of static class?

901


Can a static class implement an interface?

1070


What is a variable and constant?

965


Does unicode support all languages?

981