码迷,mamicode.com
首页 > 编程语言 > 详细

java单例模式详解

时间:2015-06-13 20:20:57      阅读:141      评论:0      收藏:0      [点我收藏+]

标签:

1、懒汉模式:

      特点:lazy loading很明显,也就是在需要的时候才加载,也就是我们常说的延迟加载。

(1)线程不安全:

public class Singleton {  
    private static Singleton instance;  
  
    public static Singleton getInstance() {  
    if (instance == null) {  
        instance = new Singleton();  
    }  
    return instance;  
    }  
}
(2)线程安全:

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


java单例模式详解

标签:

原文地址:http://blog.csdn.net/ccrzzu/article/details/46484207

(0)
(0)
   
举报
评论 一句话评论(0
登录后才能评论!
© 2014 mamicode.com 版权所有  联系我们:gaon5@hotmail.com
迷上了代码!