What is an efficient way to implement a singleton pattern in Java?
|
|
Use an enum:
Joshua Bloch explained this approach in his Effective Java Reloaded talk at Google I/O 2008: link to video. Also see slides 30-32 of his presentation (effective_java_reloaded.pdf):
Edit: An online portion of "Effective Java" says:
|
|||||||||||||||||||||
|
|
Depending on the usage, there are several "correct" answers. Since java5 the best way to do it is to use an enum:
Pre java5, the most simple case is:
Let's go over the code. First, you want the class to be final. In this case, I've used the 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. You can use a
Since the line When you also want to be able to serialize your object you need to make sure that deserialization won't create a copy.
The method |
|||||||||||||||||
|
|
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.
|
|||||||||||||
|
|
Thread safe in Java 5+:
EDIT: 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. |
|||||||||
|
|
Forget lazy initialization, it's too problematic. This is the simplest solution:
|
|||||||||||||
|
|
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. |
|||
|
|
|
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. |
|||||
|
|
A classic article on this subject: http://www.cs.umd.edu/~pugh/java/memoryModel/DoubleCheckedLocking.html |
|||
|
|
|
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. |
|||
|
|
|
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:
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). |
|||||||||||||||
|
|
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. |
|||
|
|
|
Wikipedia has some examples of singletons, also in Java. The Java 5 implementation looks pretty complete, and is thread-safe (double-checked locking applied). |
|||
|
|
|
If you do not need lazy loading then simply try
If you want lazy loading and you want your Singleton to be thread-safe, try the double-checking pattern
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. |
|||||||||||||
|
|
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 |
|||||||||
|
|
You need double-checking idiom if you need to load the instance variable of a class lazily. If you need to load a static variable or a singleton lazily, you need initilization on demand holder idiom. In addition, if the singleton needs to be seriliazble, all other fields needs to be transient and readResolve() method needs to be implemented in order to maintain the singleton object invariant. Otherwise, each time the object is deserialized, a new instance of the object will be created. What readResolve() does is replace the new object read by readObject(), which forced that new object to be garbage collected as there is no variable referring to it.
|
||||
|
|
|
I would say Enum singleton Singleton using enum in java : this is generally way to declare enum singleton. Enum singleton may contain instance variable and instance method for the simplicity also note that if you are using any instance method than you need to ensure thread safety of that method if at all it affect the state of object The use of an enum is very easy to implement and has no drawbacks regarding serializable objects, which have to be circumvented in the other ways.
You can access it by
Another problem with conventional Singletons are that once you implement serializable interface they are no longer remain Singleton because
This can become even more complex if your Singleton Class maintain state, as you need to make them transient, but with in n Enum Singleton, Serialization is guaranteed by JVM. Good Read |
|||
|
|
|
Following are 3 different approaches 1) Enum
2) Double checked Locking /Lazy loading
3) Static factory method
|
|||
|
|
|
Disclaimer: I have just summarized all of the awesome answers and wrote it in my words. While implementing Singleton we have 2 options Lazy loading adds bit overhead(lots of to be honest) so use it only 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.Otherwise choosing early loading is a good choice. Most simple way of implementing Singleton is
Everything is good except its early loaded singleton. Lets try lazy loaded singleton
So far so good but our hero will not survive while fighting alone with multiple evil threads who want many many instance of our hero. So lets protect it from evil multi threading
but it is not enough to protect out hero, Really!!! This is the best we can/should do to help our hero
This is called "Double-Checked Locking idiom". It's easy to forget the volatile statement and difficult to understand why it is necessary. Now we are sure about evil thread but what about the creul serialization? We have to make sure even while deserialiation no new object is created
The method readResolve() will make sure the only instance will be returned, even when the object was serialized in a previous run of our program. Finally we have added enough protection against threads and serialization but our code is looking bulky and ugly.Lets give our hero a make over
Yes this is our very same hero :) and is it guaranteed to be thread safe. And we have came so far, here is the best way to achieve everything we did is best possible way
Which internally will be treated like
That's it no more fear of serialization, threads and ugly code.
-Joshua Bloch in "Effective Java" Now you might have realized why ENUMS are considered as best way to implement Singleton and thanks for your patience :) |
|||
|
|
|
I think below given code is solving the issue.
|
||||
|
|
|
Sometimes a simple " 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
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. |
|||||
|


