"""
单件模式
"""
public class Singleton{
private static Singleton uniqueInstance;
private Singleton(){}
public static Singleton getInstance(){
if (uniqueInstance == null){
uniqueInstance = new Singleton();
}
return uniqueInstance
}
}
public class Singleton{
private static Singleton uniqueInstance;
private Singleton(){}
public static synchronized Singleton getInstance(){
if (uniqueInstance == null){
uniqueInstance = new Singleton()
}
return uniqueInstance
}
}
相关文章
- 11-08设计模式——单例设计模式(C++实现)
- 11-08单例设计模式
- 11-08单例设计模式之初认识
- 11-08单例设计模式的饿汉式和懒汉式
- 11-08单例设计模式之饿汉式与懒汉式
- 11-08P324 设计模式与单例设计模式
- 11-08static的应用:单例设计模式(Singleton)浅谈
- 11-08单例设计模式
- 11-0887 设计模式(二)——单例模式
- 11-08C语言和设计模式-单例模式