//java单例模式双重检索式-解决懒汉式的问题
//
//
/**
* 优点
* 解决了一开始创建对象的问题
* 多个线程在一起执行,初期可能会创建多个对象
* 双重检索式避免了这一点
* 程序初期结束之后,并不会影响后面的效率
* 缺点:
* 因为JVM内存机制,有微小的几率会导致创建多个对象
* */
public class ShuangChongJianSuo {
public static void main(String[] args) {
}
}
class test2{
static int i = 20;
private static test2 hw = null;
public static test2 getTest2() {
if(hw == null) {//30
synchronized(test2.class){//1 29等待
if(hw == null) {//1
hw = new test2();//1
}
}
}
return hw;
}
private test2() {}
public void show() {}
}