黑马程序员技术交流社区
标题:
请教“懒汉式”单例模式最完美写法是什么?
[打印本页]
作者:
liuqianfly
时间:
2015-10-12 15:35
标题:
请教“懒汉式”单例模式最完美写法是什么?
“懒汉式”单例模式最完美写法是什么?
作者:
iceknc
时间:
2015-10-12 19:25
class LazySingle
{
private LazySingle(){}
private static LazySingle ls = null;
public static LazySingle getInstance()
{
if(ls == null)
{
synchronized(LazySingle.class)
{
if(ls == null)
ls = new LazySingle();
}
}
return ls;
}
}
复制代码
欢迎光临 黑马程序员技术交流社区 (http://bbs.itheima.com/)
黑马程序员IT技术论坛 X3.2