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 Singleton

Answer Posted / hardeep thakur

Here is code to implement the singleton

public class SingletonClass {
private static SingletonClass singleObj ;
private SingletonClass(){}

public static synchronized SingletonClass getInstance()
{
if(singleObj ==null){
singleObj = new SingletonClass();
}
return singleObj;
}

public Object clone() throws CloneNotSupportedException
{
throw new CloneNotSupportedException();
}

}

Is This Answer Correct ?    7 Yes 0 No



Post New Answer       View All Answers


Please Help Members By Posting Answers For Below Questions

What is the transient keyword?

2340


What is double checked locking in singleton?

1105


How can we achieve thread safety in java?

1199


What is the relationship difference the canvas class and the graphics class?

1110


How do you convert an int to a string in java?

1199


Can java object be locked down for exclusive use by a given thread?

1056


Which is faster set or list in java?

1075


What is the constructor?

1095


What is the set interface in java programming?

1282


What does || || mean in math?

992


What is the difference between a scrollbar and a scrollpane?

1110


Which is best ide for java?

1090


Where is core java used?

1052


What does g mean in regex?

1031


What about main thread in java?

1169