What should one prefer in case of Singleton Design Pattern.
1)make whole getInstance() method synchronized
OR
2)make only critical section synchronized.
what should be one's approach and why?
|
What should one prefer in case of Singleton Design Pattern.
what should be one's approach and why? |
||||
| show 2 more comments |
|
First of all, try to consider whether or not you need lazy instantiation. If not, there's no synchronization involved since your If you do need to lazily initialize your instance, then do not make If you'll use a synchronized block inside, you need to double-check for null (outside and inside the synchronized block) to make sure you end up with only one instance; also, you need your instance to be The best-practice approach is to have a private nested class However, if you don't need lazy instantiation, the best-practice is to use an enum with one constant. Long story short, I think you'll find it all here: http://en.wikipedia.org/wiki/Singleton_pattern |
|||||||
|
|
I prefer to use an
I wouldn't make it more complicated than it needs to be. |
|||
|
|
|
Given that singleton is often regarded as an anti-pattern, I would question why you want it at all.
If at all possible I would try to use dependency injection to resolve the above issues. |
|||
|
|
|
Read |
|||
|
|
|
The best solution is not to use singleton at all.
If you reeealy need to use singleton in multi-threaded envoronment make whole Read http://www.ibm.com/developerworks/java/library/j-dcl/index.html |
|||
|
|
getInstanceshould be synchronized at all? – gkuzmin Aug 22 '12 at 14:35:)– sp00m Aug 22 '12 at 14:35