分类: Java
2011-08-26 20:28:43
Probably the first design pattern that every software developer learns is Singleton and lazy loading of Singleton classes.
The usual example, goes something like this:
The problem with this solution is that synchronized method getInstance() is called every time, while synchronization is actually neede
d only for the first call of the method (which introduces performance overhead in your application). There were attempts to tackle this problem by using Double-checked locking pattern, which although great in theory .
Today, thanks to , I found out that there is a solution to this problem that is both simple and fast: . The appropriate example follows:
Basicaly, Java Language Specification (JLS) guarantees that instance would not be initialized until someone calls getInstance() method (more information could be found in articles that I’ve linked to before). Elegant and fast, just as it should be.
原文地址:http://www.oreillynet.com/onjava/blog/2007/01/singletons_and_lazy_loading.html