public class SafeLazySingleton { //性能有缺陷
private static SafeLazySingleton mInstance;
private SafeLazySingleton(){
}
public static synchronized SafeLazySingleton getmInstance() {//在方法中声明同步方法
if(mInstance == null){
mInstance = new SafeLazySingleton();
}
return mInstance;
}
}
对懒汉式的优化,主要是在线程安全方面,有两种方式实现,上面第一种是使用synchronized关键字修饰,使得同时只能有一个线程访问
|
|