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

Explain the importance of finalize() method.

1023


What is finalize()? Is finalize() similar to a destructor?

1006


Who found java?

1028


What is the statements?

1148


What is the epoch date?

1070


What is http client in java?

1147


Which programming language is most secure?

1039


Why do we need wrapper classes?

1120


Can memory leak in java?

1090


What are static initalizers in java ?

1064


What is jar?

1177


Is java util list serializable?

984


Can a constructor have different name than a class name in java?

1283


What are the six ways to use this keyword?

1113


Can I uninstall java?

1111