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 difference between object oriented programming language and object based programming language?

943


What is the purpose of a transient variable?

1000


What is the java project architecture?

2184


What is final keyword in java? Give an example.

948


Explain about complier design(phases)

1023


How can we break singleton in java?

901


What is private static in java?

995


What is difference between Heap and Stack Memory?

979


How do you sort arraylist in descending order?

979


How do you replace all in word?

989


How can you traverse a linked list in java?

1070


What is Enum in Java?

1205


How to call one constructor from the other constructor ?

983


What is the meaning of 3 dots in java?

1101


Does treeset use compareto?

909