黑马程序员技术交流社区
标题:
多线程 单例设计模式 安全问题
[打印本页]
作者:
hanjun
时间:
2015-1-15 16:54
标题:
多线程 单例设计模式 安全问题
/*
单例设计模式。
*/
//饿汉式。
/*
class Single
{
private static final Single s = new Single();
private Single(){}
public static Single getInstance()
{
return s;
}
}
*/
//懒汉式
class Single
{
private static Single s = null;
private Single(){}
public static Single getInstance()
{
if(s==null)
{
synchronized(Single.class)
{
if(s==null)
s = new Single();
}
}
return s;
}
}
class SingleDemo
{
public static void main(String[] args)
{
System.out.println("Hello World!");
}
}
复制代码
听说这里经常考试,今天复习到这里了,分享一下,大家也注意下。
欢迎光临 黑马程序员技术交流社区 (http://bbs.itheima.com/)
黑马程序员IT技术论坛 X3.2