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 is the symbol for average?

1081


Is hashset ordered?

1125


What is the use of join method?

1086


Why is stringbuffer not immutable?

1135


Which methods cannot be overridden in java?

1048


Which is best ide for java?

1092


What are the restrictions imposed on method overriding?

1060


what are the methods in object?

1205


What is var keyword ?

1233


How will you get the platform dependent values like line separator, path separator, etc., ?

1079


What is the difference between synchronized and synchronized block?

1106


What was java originally called?

1001


What does java ide mean?

1209


What is the difference between preparedstatement and statement in java?

1238


What is constant in programming?

1180