Chinaunix首页 | 论坛 | 博客
  • 博客访问: 335394
  • 博文数量: 104
  • 博客积分: 2815
  • 博客等级: 少校
  • 技术积分: 595
  • 用 户 组: 普通用户
  • 注册时间: 2010-05-06 16:32
文章分类

全部博文(104)

文章存档

2013年(1)

2012年(2)

2011年(21)

2010年(80)

我的朋友

分类: 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

  1. public class Singleton {
  2.     static Singleton instance;
  3.     public static synchronized Singleton getInstance() {
  4.         if (instance == null)
  5.             instance = new Singleton();
  6.         return instance;
  7.     }
  8. }

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:

  1. public class Singleton {
  2.     static class SingletonHolder {
  3.         static Singleton instance = new Singleton();
  4.     }
  5.     public static Singleton getInstance() {
  6.         return SingletonHolder.instance;
  7.     }
  8. }

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

阅读(880) | 评论(0) | 转发(0) |
给主人留下些什么吧!~~