What are some recommended approaches to achieving thread-safe lazy initialization? For instance,
// Not thread-safe
public Foo getInstance(){
if(INSTANCE == null){
INSTANCE = new Foo();
}
return INSTANCE;
}
|
What are some recommended approaches to achieving thread-safe lazy initialization? For instance,
| |||
|
feedback
|
|
For singletons there is an elegant solution by delegating the task to the JVM code for static initialization.
see http://en.wikipedia.org/wiki/Initialization_on_demand_holder_idiom and this blog post of Crazy Bob Lee http://blog.crazybob.org/2007/01/lazy-loading-singletons.html | |||||
feedback
|
|
The easiest way is to use a static inner holder class :
| ||||
|
feedback
|
|
Put the code in a Also you've used SHOUTY case, which tends to indicate a | |||||
feedback
|
|
Depending on what you try to achieve: If you want all Threads to share the same instance, you can make the method synchronized. This will be sufficient If you want to make a separate INSTANCE for each Thread, you should use java.lang.ThreadLocal | |||||
|
feedback
|
|
Try to defind the method which get the instance as synchronized:
Or use a variable:
| |||||||||||
feedback
|
This is called double checking! Check this http://jeremymanson.blogspot.com/2008/05/double-checked-locking.html | |||||||||||||||
feedback
|