public class Singleton { // Q1:爲何要使用volatile關鍵字? private volatile static Singleton uniqueInstance; private Singleton() {} public static Singleton getInstance() { if (uniqueInstance == null) { /* Q2:爲何要使用synchronized (Singleton.class),使用synchronized(this)或者 synchronized(uniqueInstance)不行嗎?並且synchronized(uniqueInstance)的效率更加高?*/ synchronized (Singleton.class) { if (uniqueInstance == null) { uniqueInstance = new Singleton(); } } } return uniqueInstance; } }
Q1:可見的,一個地方修改全部地方同步可見並修改,使用volatile關鍵字會強制將修改的值當即寫入主存
Q2:this 或 uniqueInstance 可能會出現空java