本帖最后由 ye646682485 于 2015-4-24 12:10 编辑
class singleB
{
private static single s=null;
private single(){}
public static synchronized single getIns()
{
if(s==null)
{
synchronized(single.class)
{
if (s==null)//为什么这里还需要判断一次?我认为去掉没有关系吧
return s;
}
}
return s;
}
} |
|