馬老師Java高級互聯(lián)網(wǎng)架構p5p6p7p8
? ?private static World SINGLETON_WORLD;
? ?public static World getInstance() {
? ? ? ?if (SINGLETON_WORLD == null) {
? ? ? ? ? ?// 問題:多線程的情況下可能會同時進入
? ? ? ? ? ?SINGLETON_WORLD = new World();
? ? ? ?}
? ? ? ?return SINGLETON_WORLD;
? ?}
? ?// 雙鎖檢測,在工作中上述兩種情況就能夠滿足了
? ?public static World getInstance() {
? ? ? ?if (SINGLETON_WORLD == null) {
? ? ? ? ? ?synchronized (World.class) {
? ? ? ? ? ? ? ?if (SINGLETON_WORLD == null) {
? ? ? ? ? ? ? ? ? ?SINGLETON_WORLD = new World();
? ? ? ? ? ? ? ?}
? ? ? ? ? ?}
? ? ? ?}? ? ??
標簽: