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

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

2040


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

2373


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

1015


Which server-side script takes the input from JavaScript, can access the database if it needs to, and processes the data.

2095


What are the interfaces in java collections? : java collections

1139


Which sorting algorithm is used by collections.sort() in java ?

926


Hi frnds how to lock an user when he enter wrong credentials more than 3 time using java or j2ee tech take username and password in a bean no need to connect DB and validate give me some sample application code or links its urgent for me thanks in advance

2337


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

1045


What is the use of hashcode in java ?

1094


please mail me the interview question based on java/j2ee

1937


What are the different types of collections views being provided by the map interface? : java collections

1028


What do you understand by synchronization? Why is it important?

1052


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

1036


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

966


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

1145