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 Singleton

Answer Posted / manoj kumar

public class DateUtil implements Serializable,Cloneable {

   private static volatile Dateutil instance;

   private DateUtil() {
     //no-op
   }

   public static DateUtil getInstance() {

      if(instance==null) {
        synchronized(DateUtil.this) {
           if(instance==null) {
              instance = new DateUtil();
           }
        }
        return instance;
      }
   
   protected Object readResolve() {
     return instance;
   }

   public Object clone() throws CloneNotSupportedException {

     super.clone();

     throw new CloneNotSupportedException;
  }

Is This Answer Correct ?    0 Yes 0 No



Post New Answer       View All Answers


Please Help Members By Posting Answers For Below Questions

Why put method is used?

970


Write a program to print 15 random numbers using foreach of java 8?

896


How do you classify Dialog Box?

1069


Is linked list a linear or non-linear data structure?

923


How many unicode characters are there?

989


What are the six ways to use this keyword?

1021


What is multithreading and its advantages?

1021


What are heap memory and stack memory and what are memory tables.

930


Is empty set an element of empty set?

1036


Is the empty set a singleton?

919


How do you check if a number is a perfect square?

945


What is the difference between method overriding and overloading?

1182


If A Class Is Declared Without Any Access Modifiers, Where May The Class Be Accessed?

1128


How to restrict a member of a class from inheriting by its sub classes?

1296


what is thread? What are the high-level thread states? Or what are the states associated in the thread? : Java thread

948