采用双锁机制,安全且在多线程情况下能保持高性能。

 1
 2
 3
 4
 5
 6
 7
 8
 9
10
11
12
13
14
15
16
public class Singleton{
  private static volatile Singleton instance;
  private Singleton(){}
  public static Singleton getInstance(){
    if(instance == null){
    // 判断对象是否以及实例化过,没有则进入加锁代码块,此处可能有多个线程同时进来,等待类对象锁
      synchronized(Singleton.class){
      // 获取类对象锁,其他线程在外等待,其他线程进来再次判断,如果对象实例化了,则不需要再实例化
        if(instance == null){
          instance = new Singleton();
        }
      }
    }
    return instance;
  }
}

参考:https://www.runoob.com/design-pattern/singleton-pattern.html