-
Breaking the Singleton (2 messages)
- Posted by: Yohan Liyanage
- Posted on: September 24 2009 10:29 EDT
Singleton is one of the most famous design patterns, that is being used quite a lot. However, some of the developers are unaware that the "singleton-ness" singleton pattern can be broken using different ways. This discussion is about breaking the Singleton pattern in Java using using different methods, and how to avoid some of those. http://yohanliyanage.blogspot.com/2009/09/breaking-singleton.htmlThreaded Messages (2)
- Re: Breaking the Singleton by Time PassX on September 28 2009 08:25 EDT
- nothing new, really. by lipman li on September 29 2009 20:53 EDT
-
Re: Breaking the Singleton[ Go to top ]
- Posted by: Time PassX
- Posted on: September 28 2009 08:25 EDT
- in response to Yohan Liyanage
Is there any other ways to break the singleton than the ones mentioned in this article?? -
nothing new, really.[ Go to top ]
- Posted by: lipman li
- Posted on: September 29 2009 20:53 EDT
- in response to Yohan Liyanage
really nothing new here, all of them had been discussed in the book Effective Java (2nd Edition) authored by Joshua Bloch.