码迷,mamicode.com
首页 > 其他好文 > 详细

单例模式

时间:2015-11-22 11:07:07      阅读:110      评论:0      收藏:0      [点我收藏+]

标签:

单例模式:饿汉式单例类   懒汉式单例类

饿汉式和单例式区别

技术分享
 1 /**
 2 * 懒汉式单例模式
 3 * @author Administrator
 4 *
 5 */
 6 public class Singleton{
 7 private static Singleton _instance = null;
 8 
 9 //构造方法私有,保证外界无法直接实例化
10 private Singleton(){
11 
12 }
13 
14 //方法同步
15 synchronized public static Singleton getInsatance(){
16 if(_instance == null){
17 _instance = new Singleton();
18 }
19 
20 return _instance;
21 }
22 
23 }
View Code

 

单例模式

标签:

原文地址:http://www.cnblogs.com/wangwanchao/p/4977704.html

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