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

Explain the common use of ejb?

1044


If you’re overriding the method equals() of an object, which other method you might also consider?

893


Explain suspend() method under thread class>

979


What is a pojo class in java?

893


What is the java virtual machine (jvm)?

1016


What is ibatis in java?

890


What is map and flatmap?

984


Why are command line arguments passed as a string?

881


What is meant by java se?

890


What is gwt in java?

863


What is java web application?

834


ioc vs dependency injection?

2276


What is lazy loading in jpa?

825


What is cmp in java?

884


What is entitymanager in java?

924