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 the singleton class in java?

Answer Posted / naman patidar

A singleton class can never have more then one instance.
Example :

class SingletonClass {
private static SingletonClass singleObject;

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

Is This Answer Correct ?    3 Yes 2 No



Post New Answer       View All Answers


Please Help Members By Posting Answers For Below Questions

What if the main method is declared as private?

883


When is static variable loaded? Is it at compile time or runtime? When exactly a static block is loaded in java?

944


What is lsdou? : java security

977


What is numberformatexception in java?

889


What are the benefits of a jar file?

1024


When do we go for java 8 stream api? Why do we need to use java 8 stream api in our projects?

974


What is java persistence api used for?

936


What is a stream in programming?

853


What is lambda expression in mvc?

1015


What is explicit casting?

982


Explain working of java virtual machine (jvm)?

1030


When a thread is created and started, what is its initial state?

971


Can I use openjdk for commercial?

974


Why we use beans in java?

923


How do I run a project in netbeans?

936