标题: Java中两种单例设计模式标准代码 [打印本页] 作者: wx348602984 时间: 2015-4-24 21:23 标题: Java中两种单例设计模式标准代码 单例模式代码:
懒汉式:
class Single{
private static Single s = null;
private Single(){}
public static Single getIntance(){
if (s == null){
s = new Single();
}
return s;
}
}
饿汉式:
class Single{
private static Single s = new Single();
private Single(){}
public static Single getIntance(){
return s;
}
}作者: yelebron 时间: 2015-4-24 21:27
不错不错加油加油!!!作者: wx348602984 时间: 2015-4-24 21:29