JAVA设计模式之单例模式
程序员文章站
2022-07-14 10:04:25
...
singleton模式的实现
单线程的应用:
JAVA代码
public class SingLeton {
private SingLeton(){
}
private static SingLeton instance=null;
public static SingLeton getInstance(){
if(instance==null){
return instance=new SingLeton();
}else{
return instance;
}
}
}
上一篇: Java设计模式之单例模式
下一篇: oracle 一些总结