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...

How to implement or use the singleton class in java?

Answer Posted / amit sharma

singleton is a design pattern. in this per application only
one object should exist.we implement it as follows:

public class abcd
{
private static abcd instance=null;
protected abcd()
{
//only to defeat instantiation;
}
public static abcd getInstance()
{
if(instance==null)
{
instance=new abcd();
}
return instance;
}

Is This Answer Correct ?    11 Yes 4 No



Post New Answer       View All Answers


Please Help Members By Posting Answers For Below Questions

Hi Friends, i have searched in google but not clear. can you give bank example with synchronized keyword

2046


What are the different types of features of the java collections framework? : java collections

1115


How do I find jre path in windows?

1025


In hyderabad, which s/w training center is best for java, other than corejava what r the new tools to learn in java,which tool is best & have current requirement,pls give me information about java to learn ?

2167


What are the classes in the java collection framework? : java collections

1045


What do you understand by synchronization? Why is it important?

1063


What is java collection? : java collections

1117


What is iterator in the java collections framework? : java collections

975


Which server-side script takes the input from JavaScript, can access the database if it needs to, and processes the data.

2110


What are the different types of collections views being provided by the map interface? : java collections

1034


What is the use of hashcode in java ?

1102


What is an algorithm in java collection framework? : java collections

1059


What are the types of the main implementing classes in the map interfaces? : java collections

1157


What are the types of interface used in the java collections? : java collections

1040


What are the interfaces in java collections? : java collections

1152