vote up 19 vote down star
17

Efficient way to implement singleton pattern in Java?

flag

80% accept rate
What do you mean by best? As in point out a real-world implementation or do you mean how to implement singleton correctly? In ruby, singeton means something a bit different - related to metaprogramming.. So a little more detail would help you to get your answer. – Gishu Sep 16 '08 at 9:29
My, this has turned out to be quit a lively thread! – Stu Thompson Sep 16 '08 at 14:53
1  
singletons are considered to be anti-patterns since over 10 years ;) – ivan_ivanovich_ivanoff Mar 25 at 23:47

19 Answers

vote up 23 vote down check

Depending on the usage, there are several "correct" answers.

The most simple case is:

public final class Foo {

    private static final Foo INSTANCE = new Foo();

    private Foo() {
    	if (INSTANCE != null) {
    		throw new IllegalStateException("Already instantiated");
    	}
    }

    public static Foo getInstance() {
    	return INSTANCE;
    }
}

Let's go over the code. First, you want the class to be final. In this case, I've used the final keyword to let the users know it is final. Then you need to make the constructor private to prevent users to create their own Foo. Throwing an exception from the constructor prevents users to use reflection to create a second Foo. Then you create a private static final Foo field to hold the only instance, and a public static Foo getInstance() method to return it. The Java specification makes sure that the constructor is only called when the class is first used.

When you have a very large object or heavy construction code AND also have other accessible static methods or fields that might be used before an instance is needed, then and only then you need to use lazy initialization.

As Bno suggested, you can use a private static class to load the instance. The code would then look like:

public final class Foo {

    private static class FooLoader {
        private static final Foo INSTANCE = new Foo();
    }

    private Foo() {
    	if (FooLoader.INSTANCE != null) {
    		throw new IllegalStateException("Already instantiated");
    	}
    }

    public static Foo getInstance() {
    	return FooLoader.INSTANCE;
    }
}

Since the line private static final Foo INSTANCE = new Foo(); is only executed when the class FooLoader is actually used, this takes care of the lazy instantiation, and is it guaranteed to be thread safe.

When you also want to be able to serialize your object you need to make sure that deserialization won't create a copy.

public final class Foo implements Serializable {

    private static final long serialVersionUID = 1L;

    private static class FooLoader {
        private static final Foo INSTANCE = new Foo();
    }

    private Foo() {
    	if (FooLoader.INSTANCE != null) {
    		throw new IllegalStateException("Already instantiated");
    	}
    }

    public static Foo getInstance() {
    	return FooLoader.INSTANCE;
    }

    @SuppressWarnings("unused")
    private Foo readResolve() {
    	return FooLoader.INSTANCE;
    }
}

The method readResolve() will make sure the only instance will be returned, even when the object was serialized in a previous run of your program.

link|flag
1  
The check for reflection is useless. If other code is using reflection on privates, it's Game Over. There's no reason to even try to function correctly under such misuse. And if you try, it will be an incomplete "protection" anyways, just a lot of wasted code. – Wouter Coekaerts Feb 24 at 21:42
> "First, you want the class to be final". Could someone elaborate on this please? – Nocturne Mar 2 at 21:09
The deserialisation protection is completely broken (I think this is mentioned in Effective Java 2nd Ed). – Tom Hawtin - tackline Jul 15 at 22:45
-1 this is absolutely not the most simple case, it's contrived and needlessly complex. Look at Jonathan's answer for the actually most simple solution that is sufficient in 99.9% of all cases. – Michael Borgwardt Sep 30 at 8:16
No, it is not. As the language changes and time passes, progressive insight learned me that for java5 and later, the best way to do it is to use the enum solution, as suggested by spdenne – Roel Spilker Oct 8 at 11:24
vote up 28 vote down

Use an enumeration.

   public enum Foo {
       INSTANCE;
   }

Pages 29-31 of Josh Block's JavaOne 2008 More Effective Java (pdf) is "The Right Way to Implement a Serializable Singleton"

   public enum Elvis {
       INSTANCE;
       private final String[] favoriteSongs =
           { "Hound Dog", "Heartbreak Hotel" };
       public void printFavorites() {
           System.out.println(Arrays.toString(favoriteSongs));
       }
   }

Edit: An online portion of "Effective Java" says: "This approach is functionally equivalent to the public field approach, except that it is more concise, provides the serialization machinery for free, and provides an ironclad guarantee against multiple instantiation, even in the face of sophisticated serialization or reflection attacks. While this approach has yet to be widely adopted, a single-element enum type is the best way to implement a singleton."

link|flag
1  
I just don't like it. it seems just so hacky. – Stu Thompson Sep 16 '08 at 14:55
1  
I think it's the most elegant solution there can be with Java 1.5 – GHad Sep 22 '08 at 20:46
5  
I think people should start looking at enums as just a class with a feature. if you can list the instances of your class at compile time, use an enum. – Amir Arad Oct 7 '08 at 7:17
1  
I'm with Amir. The name "enum" has so many preconceived expectations, that it's takes a little while to sink in that, in Java, enumerations are really much more than a list of symbolic constants. – Dave Ray Dec 2 '08 at 21:16
+1 Josh Bloch's pattern is the most elegant (imho) – cletus Jan 9 at 21:40
show 2 more comments
vote up 25 vote down

The solution posted by Stu Thompson is valid in Java5.0 and later. But I would prefer not to use it because I think it is error prone.

It's easy to forget the volatile statement and difficult to understand why it is necessary. Without the volatile this code would not be thread safe anymore due to the double-checked locking antipattern. See more about this in paragraph 16.2.4 of Java Concurrency in Practice. In short: This pattern (prior to Java5.0 or without the volatile statement) could return a reference to the Bar object that is (still) in an incorrect state.

This pattern was invented for performance optimization. But this is really not a real concern anymore. The following lazy initialization code is fast and -more importantly- easier to read.

class Foo {
    private static class BarHolder {
        public static Bar bar = new Bar();
    }

    public static Bar getBar() {
        return BarHolder.bar;
    }
}
link|flag
Fair enough! I'm just comfortable with volatile and it's use. Oh, and three cheers for JCiP. – Stu Thompson Sep 16 '08 at 14:40
Oh, this is apparently the approach advocated by William Pugh, of FindBugz fame. – Stu Thompson Sep 16 '08 at 14:42
vote up 16 vote down

Make sure that you really need it. Do a google for "singleton anti-pattern" to see some arguments against it. There's nothing inheritantly wrong with it I suppose but it's just a mechanism for exposing some global resource/data so make sure that this is the best way. In particular I've found dependency injection more useful particularly if you are also using unit tests because DI allows you to use mocked resources for testing purposes.

link|flag
vote up 15 vote down

Thread safe in Java 5+:

class Foo {
    private static volatile Bar bar = null;
    public static Bar getBar() {
        if (bar == null) {
            synchronized(Foo.class) {
                if (bar == null)
                    bar = new Bar(); 
            }
        }
        return bar;
    }
}


EDIT: Kids, pay attention to the volatile modifier here. :) It is important because without it, other threads are not guaranteed by the JMM (Java Memory Model) to see changes to its value. The synchronization does not take care of that--it only serializes access to that block of code.

EDIT 2: @Bno 's answer details the approach recommended by Bill Pugh (FindBugs) and is arguable better. Go read and vote up his answer too.

link|flag
Where can I learn more about the volatile modifier? – eleven81 Jan 16 at 17:16
vote up 13 vote down

Forget lazy initialization, it's too problematic. This is the simplest solution:

public class A {    

    private static A singleton = new A();

    private A() {}

    public static A getInstance() {
        return singleton;
    }
}
link|flag
1  
singleton instance variable can be made final also. e.g., private static final A singleton = new A(); – jatanp Sep 16 '08 at 11:54
2  
That effectively is lazy initialisation, since the static singleton won't be instantiated until the class is loaded and the class won't be loaded until it's needed (which will be right about the time that you first reference the getInstance() method). – Dan Dyer Sep 16 '08 at 12:48
If class A does get loaded way before you want the static to be instantiated, you can wrap the static in a static inner class to decouple the class initialisation. – Tom Hawtin - tackline Sep 16 '08 at 12:54
I agree with @Dan Dayer, this is example it is lazy initialization. If there were other methods on the class, then it might be...depends on which static method gets called first. (Imagine a public static void doSomething() in class A being called first--A is instanced, but not used.) – Stu Thompson Sep 16 '08 at 14:26
vote up 4 vote down

A classic article on this subject: http://www.cs.umd.edu/~pugh/java/memoryModel/DoubleCheckedLocking.html

link|flag
vote up 4 vote down

Don't forget the Singleton is only a Singleton for the Classloader that loaded it. If you are using multiple loaders (Containers) each COULD have its own version of the Singleton.

link|flag
To avoid, using a utility class, register a container holding the singleton instance into the platform MBeanServer. The ObjectName is ~the singleton class name. If INSTANCE is null, the getInstance checks the MBeanServer. If MBean exists, instance is accessed through an attribute in the container. – Nicholas Jan 5 at 22:40
vote up 3 vote down

Really consider why you need a singleton before writing it. There is a quasi-religious debate about using them which you can quite easily stumble over if you google singletons in Java.

Personally I try to avoid singletons as often as possible for many reasons, again most of which can be found by googling singletons. I feel that quite often singletons are abused because they're easy to understand by everybody, they're used as a mechanism for getting "global" data into an OO design and they are used because it is easy to circumvent object lifecycle management (or really thinking about how you can do A from inside B). Look at things like Inversion of Control (IoC) or Dependency Injection (DI) for a nice middleground.

If you really need one then wikipedia has a good example of a proper implementation of a singleton.

link|flag
vote up 2 vote down

Nicolas's class is not thread-safe. If two threads, Thread 1 and Thread 2, call getInstance() at the same time, two instances can be created if Thread 1 is pre-empted just after it enters the if block and control is subsequently given to Thread 2.

link|flag
vote up 1 vote down

Wikipedia has some examples of singletons, also in Java. The Java 5 implementation looks pretty complete, and is thread-safe (double-checked locking applied).

link|flag
vote up 1 vote down

If you do not need lazy loading then simply try

public class Singleton {
    private final static Singleton INSTANCE = new Singleton();

    private Singleton() {}

    public static Singleton getInstance() { return Singleton.INSTANCE; }

    protected Object clone() {
        throw new CloneNotSupportedException();
    }
}

If you want lazy loading and you want your Singleton to be thread-safe, try the double-checking pattern

public class Singleton {
        private static Singleton instance = null;

        private Singleton() {}

        public static Singleton getInstance() { 
              if(null == instance) {
                  synchronized(Singleton.class) {
                      if(null == instance) {
                          instance = new Singleton();
                      }
                  }
               }
               return instance;
        }

        protected Object clone() {
            throw new CloneNotSupportedException();
        }
}

As the double checking pattern is not guaranteed to work (due to some issue with compilers, I don't know anything more about that.), you could also try to synchronize the whole getInstance-method or create a registry for all your Singletons.

link|flag
The first version is best. Assuming the class does nothing other than provide a singleton, then it will typically be instantiated at about the same point as the one in the second version due to lazy class loading. – Dan Dyer Sep 16 '08 at 12:50
1  
Double-checking is pointless for a static. And why have you made the protected clone method public? – Tom Hawtin - tackline Sep 16 '08 at 12:56
vote up 0 vote down

Usually find the patterns listed on dofactory.com quite good. Used to use the site quite a bit in University for our Design Patterns class. It may prove useful:

Useful Link: http://www.dofactory.com/Patterns/PatternSingleton.aspx#_self1

link|flag
vote up 0 vote down

I use the Spring Framework to manage my singletons. It doesn't enforce the "singleton-ness" of the class (which you can't really do anyway if there are multiple class loaders involved) but provides a really easy way to build and configure different factories for creating different types of objects.

link|flag
vote up -1 vote down

I'm mystified by some of the answers that suggest DI as an alternative to using singletons; these are unrelated concepts. You can use DI to inject either singleton or non-singleton (e.g. per-thread) instances. At least this is true if you use Spring 2.x, I can't speak for other DI frameworks.

So my answer to the OP would be (in all but the most trivial sample code) to:

  1. Use a DI framework like Spring, then
  2. Make it part of your DI configuration whether your dependencies are singletons, request scoped, session scoped, or whatever.

This approach gives you a nice decoupled (and therefore flexible and testable) architecture where whether to use a singleton is an easily reversible implementation detail (provided any singletons you use are threadsafe, of course).

link|flag
Downvoted because? – Andrew Swan Nov 24 at 0:00
vote up -1 vote down

go with the enum implementation as mentioned by spdenne

link|flag
vote up -1 vote down

That is correct. It is dependent on the class name, the package and the class loader - as stated above ("the given class (name) of the given package is loaded by this one class loader").

link|flag
vote up -1 vote down
import java.io.Serializable;

public final class ImprovedSingleton implements Serializable {

    /** PRIVATE CONSTRUCTOR */
    private ImprovedSingleton() {
        // do nothing
    }

    /** TO PROTECT CLONING */
    protected ImprovedSingleton clone() throws CloneNotSupportedException {
        throw new CloneNotSupportedException("Can't clone the singleton instance");
    }

    /** ***************************************** 
     * THIS IS TO MAKE CLASS SERIALIZATION SAFE */
    private static final long serialVersionUID = 1L;

    @SuppressWarnings("unused")
    private ImprovedSingleton readResolve() {
        return ImprovedSingletonLoader._instance;
    }
    /** *****************************************/ 


    /**
     * LAZY INITIALIZATION THREAD SAFE NO PERFORMANCE CONCERNS BECAUSE OF
     * SYNCHRONIZATION.
     */

    private static class ImprovedSingletonLoader {
        private static final ImprovedSingleton _instance = new ImprovedSingleton();
    }

    /**
     * IMPROVEDSINGLETONLOADER._INSTANCE WILL BE INITIALIZED ON THE FIRST CALL
     * OF THE GETINSTANCE METHOD
     */
    public static ImprovedSingleton getInstance() {
        return ImprovedSingletonLoader._instance;
    }
}
link|flag
This solution covers most of the hacks in the singleton pattern. Please suggest modifications so that I can imporve this code. – Aditya Shrivastava Jul 6 at 15:00
vote up -3 vote down

Sometimes a simple "static Foo foo = new Foo();" is not enough. Just think of some basic data insertion you want to do.

On the other hand you would have to synchronize any method that instantiates the singleton variable as such. Synchronisation is not bad as such, but it can lead to performance issues or locking (in very very rare situations using this example. The solution is

public class Singleton {

    private static Singleton instance = null;

    static {
          instance = new Singleton();
          // do some of your instantiation stuff here
    }

    private Singleton() {
          if(instance!=null) {
                  throw new ErrorYouWant("Singleton double-instantiation, should never happen!");
          }
    }

    public static getSingleton() {
          return instance;
    }

}

Now what happens? The class is loaded via the class loader. Directly after the class was interpreted from a byte Array, the VM executes the static { } - block. that's the whole secret: The static-block is only called once, the time the given class (name) of the given package is loaded by this one class loader.

link|flag
1  
Not true. static variables are initialized along with static blocks when the class is loaded. No need to split the declaration. – Motlin Jan 9 at 14:53

Your Answer

Get an OpenID
or

Not the answer you're looking for? Browse other questions tagged or ask your own question.