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 is java collection? : java collections

1094


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

1039


What is the difference between comparable and comparator in java.util pkg?

1105


What are maps interfaces in the java collections? : java collections

1042


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

1007


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

1024


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

1053


can u draw class/object diagram for ATM

6084


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

1042


What are the differences between the java collection and the java list? : java collections

1096


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

1135


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

2034


Should we create system software ( e.g operating system ) in java ?

1028


Explain the OOPS concept in Realtime Scenarion ? Take example as CAR. Please explain indetail ?

3032


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

1018