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

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

996


What are the main classes of the list interfaces? : java collections

978


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

1090


What is the use of the list interface in the java collection? : java collections

976


Hi we have an urgent requirement for Java/J2ee technical lead position & also looking for "Java Guidewire claimcentre" experienced professional for Bangalore location if interested can reach srisanh@gmail.com

2936


my interviewer asked me what technical specification you used how to answer that question

2322


How do I find jre path in windows?

963


what is mean by hasing and maping in java platform and advantage?

2316


Which interface does java.util.hashtable implement?

1134


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

986


Which java collection class can be used to maintain the entries in the order in which they were last accessed?

995


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

1050


What are the different types of classes implemented in the set interfaces? : java collections

1008


What is the Spring2.5 MVC Navigation flow?

6293


can u draw class/object diagram for ATM

6008