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

java 单例模式

时间:2015-04-20 20:45:21      阅读:103      评论:0      收藏:0      [点我收藏+]

标签:

参考:http://blog.csdn.net/kufeiyun/article/details/6166673

private static Single instance = null
public synchronized static Single getInstance(){   
if(instance==null){
instance = new Single();
}
}
private static Single instance = new Single();
public static Single getInstance(){
return instance;
}

 

java 单例模式

标签:

原文地址:http://www.cnblogs.com/wjw334/p/4442340.html

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