單例模式學習

来源:https://www.cnblogs.com/yuehungege/archive/2020/04/27/studynotes_singletonpatterns.html
-Advertisement-
Play Games

單例模式學習 1 餓漢式單例模式 還沒用就創建了對象,可能會浪費空間 2 懶漢式單例模式 無線程鎖 java package main.java.com.yuehun.singleton; / main.java.com.yuehun.singleton @author yuehun Created ...


單例模式學習

1 餓漢式單例模式

package main.java.com.yuehun.singleton;

/**
 * main.java.com.yuehun.singleton
 *
 * @author yuehun
 * Created on 2020/4/27.
 */

// 餓漢式單例模式
public class Hungry {
    private Hungry(){}

    private final static Hungry HUNGRY = new Hungry();

    public static Hungry getInstance()
    {
        return HUNGRY;
    }
}
  • 還沒用就創建了對象,可能會浪費空間

2 懶漢式單例模式

無線程鎖

package main.java.com.yuehun.singleton;

/**
 * main.java.com.yuehun.singleton
 *
 * @author yuehun
 * Created on 2020/4/27.
 */

// 懶漢式單例模式
public class Lazy {
    private Lazy(){
        System.out.println(Thread.currentThread().getName() + "OK");
    }

    private static Lazy lazy = null;

    public static Lazy getInstance()
    {
        if (lazy == null)
        {
            lazy = new Lazy();
        }
        return lazy;
    }

    public static void main(String[] args) {
        for (int i = 0; i < 10; i++)
        {
            new Thread(Lazy::getInstance).start();
        }
    }
}
  • 單線程下可以,但是多線程不安全

加線程鎖

package main.java.com.yuehun.singleton;

/**
 * main.java.com.yuehun.singleton
 *
 * @author yuehun
 * Created on 2020/4/27.
 */

// 懶漢式單例模式
public class Lazy {
    private Lazy(){
        System.out.println(Thread.currentThread().getName() + " OK");
    }

    private volatile static Lazy lazy = null;

    // 雙重檢測鎖模式的懶漢式單例模式, DCL 懶漢式
    public static Lazy getInstance()
    {
        if (lazy == null) {
            synchronized (Lazy.class) {
                if (lazy == null) {
                    lazy = new Lazy(); // 不是一個原子性操作
                    /**
                     * 1 分配記憶體空間
                     * 2 執行構造方法,初始化對象
                     * 3 把這個對象指向這個空間
                     *
                     * 可能會發生指令重排!!!
                     */
                }
            }
        }
        return lazy;
    }

    public static void main(String[] args) {
        for (int i = 0; i < 10; i++)
        {
            new Thread(Lazy::getInstance).start();
        }
    }
}

3 單例不是安全的

使用反射破壞單例模式

  • Java 裡面有個東西叫反射
  • 比如:
package main.java.com.yuehun.singleton;

import java.lang.reflect.Constructor;

/**
 * main.java.com.yuehun.singleton
 *
 * @author yuehun
 * Created on 2020/4/27.
 */

// 餓漢式單例模式
public class Hungry {
    private Hungry(){}

    private final static Hungry HUNGRY = new Hungry();

    public static Hungry getInstance()
    {
        return HUNGRY;
    }

    public static void main(String[] args) throws Exception {
        Hungry instance = new Hungry();

        Constructor<Hungry> declaredConstructor = Hungry.class.getDeclaredConstructor(null);
        declaredConstructor.setAccessible(true);
        Hungry instance2 = declaredConstructor.newInstance();

        System.out.println(instance);
        System.out.println(instance2);
    }
}

阻止反射破壞

阻止反射的破壞

package main.java.com.yuehun.singleton;

import java.lang.reflect.Constructor;

/**
 * main.java.com.yuehun.singleton
 *
 * @author yuehun
 * Created on 2020/4/27.
 */

// 餓漢式單例模式
public class Hungry {
    private Hungry(){
        synchronized (Hungry.class)
        {
            if (HUNGRY != null)
            {
                throw new RuntimeException("不要試圖使用反射破壞單例模式");
            }
        }
    }

    private final static Hungry HUNGRY = new Hungry();

    public static Hungry getInstance()
    {
        return HUNGRY;
    }

    public static void main(String[] args) throws Exception {
        Hungry instance = new Hungry();

        Constructor<Hungry> declaredConstructor = Hungry.class.getDeclaredConstructor(null);
        declaredConstructor.setAccessible(true);
        Hungry instance2 = declaredConstructor.newInstance();

        System.out.println(instance);
        System.out.println(instance2);
    }
}

還有一種反射破壞

  • 如果兩個對象都是通過反射構造的,就不會觸發異常
package main.java.com.yuehun.singleton;

import java.lang.reflect.Constructor;

/**
 * main.java.com.yuehun.singleton
 *
 * @author yuehun
 * Created on 2020/4/27.
 */

// 懶漢式單例模式
public class Lazy {
//    private static boolean flag = false;

    private Lazy()
    {
        synchronized (Lazy.class)
        {
//            if (!flag)
//                flag = true;
//            else {
                if (lazy != null) {
                    throw new RuntimeException("不要試圖使用反射破壞單例模式");
//                }
            }
        }
    }

    private volatile static Lazy lazy = null;

    // 雙重檢測鎖模式的懶漢式單例模式, DCL 懶漢式
    public static Lazy getInstance()
    {
        if (lazy == null)
        {
            synchronized (Lazy.class)
            {
                if (lazy == null)
                {
                    lazy = new Lazy(); // 不是一個原子性操作
                    /**
                     * 1 分配記憶體空間
                     * 2 執行構造方法,初始化對象
                     * 3 把這個對象指向這個空間
                     *
                     * 可能會發生指令重排!!!
                     */
                }
            }
        }
        return lazy;
    }

    public static void main(String[] args) throws Exception
    {
        Constructor<Lazy> declaredConstructor = Lazy.class.getDeclaredConstructor(null);
        declaredConstructor.setAccessible(true);
        Lazy instance = declaredConstructor.newInstance();
        Lazy instance2 = declaredConstructor.newInstance();

        System.out.println(instance);
        System.out.println(instance2);
    }
}

又有一種解決方法

package main.java.com.yuehun.singleton;

import java.lang.reflect.Constructor;

/**
 * main.java.com.yuehun.singleton
 *
 * @author yuehun
 * Created on 2020/4/27.
 */

// 懶漢式單例模式
public class Lazy {
    private static boolean flag = false;

    private Lazy()
    {
        synchronized (Lazy.class)
        {
            if (!flag)
                flag = true;
            else
                throw new RuntimeException("不要試圖使用反射破壞單例模式");
        }
    }

    private volatile static Lazy lazy = null;

    // 雙重檢測鎖模式的懶漢式單例模式, DCL 懶漢式
    public static Lazy getInstance()
    {
        if (lazy == null)
        {
            synchronized (Lazy.class)
            {
                if (lazy == null)
                {
                    lazy = new Lazy(); // 不是一個原子性操作
                    /**
                     * 1 分配記憶體空間
                     * 2 執行構造方法,初始化對象
                     * 3 把這個對象指向這個空間
                     *
                     * 可能會發生指令重排!!!
                     */
                }
            }
        }
        return lazy;
    }

    public static void main(String[] args) throws Exception
    {
        Constructor<Lazy> declaredConstructor = Lazy.class.getDeclaredConstructor(null);
        declaredConstructor.setAccessible(true);
        Lazy instance = declaredConstructor.newInstance();
        Lazy instance2 = declaredConstructor.newInstance();

        System.out.println(instance);
        System.out.println(instance2);
    }
}

破壞者又來了

  • 可以通過反射獲取到我們設置的這個標誌位,在以後每一次創建對象的時候修改它
package main.java.com.yuehun.singleton;

import java.lang.reflect.Constructor;
import java.lang.reflect.Field;

/**
 * main.java.com.yuehun.singleton
 *
 * @author yuehun
 * Created on 2020/4/27.
 */

// 懶漢式單例模式
public class Lazy {
    private static boolean flag = false;

    private Lazy()
    {
        synchronized (Lazy.class)
        {
            if (!flag)
                flag = true;
            else
                throw new RuntimeException("不要試圖使用反射破壞單例模式");
        }
    }

    private volatile static Lazy lazy = null;

    // 雙重檢測鎖模式的懶漢式單例模式, DCL 懶漢式
    public static Lazy getInstance()
    {
        if (lazy == null)
        {
            synchronized (Lazy.class)
            {
                if (lazy == null)
                {
                    lazy = new Lazy(); // 不是一個原子性操作
                    /**
                     * 1 分配記憶體空間
                     * 2 執行構造方法,初始化對象
                     * 3 把這個對象指向這個空間
                     *
                     * 可能會發生指令重排!!!
                     */
                }
            }
        }
        return lazy;
    }

    public static void main(String[] args) throws Exception
    {
        Field flag = Lazy.class.getDeclaredField("flag");
        flag.setAccessible(true);

        Constructor<Lazy> declaredConstructor = Lazy.class.getDeclaredConstructor(null);
        declaredConstructor.setAccessible(true);

        Lazy instance = declaredConstructor.newInstance();
        
        flag.set(instance, false);
        Lazy instance2 = declaredConstructor.newInstance();

        System.out.println(instance);
        System.out.println(instance2);
    }
}

道高一尺,魔高一丈

4 枚舉解決

  • enum 本身也是一個 Class 類
package main.java.com.yuehun.singleton;

import java.lang.reflect.Constructor;

/**
 * main.java.com.yuehun.singleton
 *
 * @author yuehun
 * Created on 2020/4/27.
 */
public enum EnumSingleton {
    INSTANCE;

    public EnumSingleton getInstance()
    {
        return INSTANCE;
    }
}

class Test {
    public static void main(String[] args) throws Exception {
        EnumSingleton instance1 = EnumSingleton.INSTANCE;

        Constructor<EnumSingleton> declaredConstructor = EnumSingleton.class.getDeclaredConstructor(String.class, int.class);
        declaredConstructor.setAccessible(true);
        EnumSingleton instance2 = declaredConstructor.newInstance();

        System.out.println(instance1);
        System.out.println(instance2);
    }
}

到此,阻止反射破壞就成功了!


您的分享是我們最大的動力!

-Advertisement-
Play Games
更多相關文章
  • 當我們搭建一個靜態網站時,我們經常會有這樣的想法:希望所有頁面,有風格一致的頭部菜單、標題/廣告欄、頁腳。 ... 其實, Apache SSI(Server Side Includes) ,可以做到靜態網頁統一頁面佈局,可以自動地為每個網頁添加風格一致的頭部菜單、標題/廣告欄、頁腳。 ...
  • 代碼: 效果: ...
  • 1.常見的三目運算就不多說了。如下: 替換前 function fliterPerson(person) { if (!person.email) { return 'email is require' } else if (!person.login) { return 'login is req ...
  • Web前端開發是從網頁製作演變而來的,名稱上有很明顯的時代特征。各種類似桌面軟體的Web應用大量涌現,網站的前端由此發生了翻天覆地的變化。網頁不再只是承載單一的文字和圖片,各種豐富媒體讓網頁的內容更加生動,網頁上軟體化的交互形式為用戶提供了更好的使用體驗,這些都是基於前端技術實現的。 隨著Web前端 ...
  • 前言 由於個人的一些原因最近也參加了幾家公司的面試,發現有很多基礎性的東西掌握程度還是不夠,故此想總結一下最近面試遇到的問題,希望能為在準備面試的的小伙伴盡一些綿薄之力,主要說的是一些我面試當中問到的一些問題,說的不對的地方請小伙伴們即使指正出來,或者有其他的看法也可以一起探討。 一、HTML/CS ...
  • 點擊按鈕實現文件上傳 <!DOCTYPE HTML><html><head> <meta http-equiv="Content-Type" content="text/html; charset=utf-8"> <script src="./jquery.min.js" type="text/ja ...
  • 先說兩句 前面已經講完了 Vuex 下的 、 、 及 這四駕馬車,不知道大家是否已經理解。當然,要想真正熟練掌握的話,還是需要不斷的練習和動手實踐才行。 其實只要把這四駕馬車完全熟練駕馭了,那麼應對一些中小型的項目,基本上就已經沒啥問題了,後面的 Module 這架終極馬車,其實是為了搞定那些稍微大 ...
  • Eureka高可用 1.設置伺服器之間的host,測試環境是在window10上搭建的,所以去修改C:\Windows\System32\drivers\etc文件,如下: 2.創建項目: 3.編輯配置文件: application.yml: #一組服務需要使用相同的服務名稱,才能被識別為一組! a ...
一周排行
    -Advertisement-
    Play Games
  • 移動開發(一):使用.NET MAUI開發第一個安卓APP 對於工作多年的C#程式員來說,近來想嘗試開發一款安卓APP,考慮了很久最終選擇使用.NET MAUI這個微軟官方的框架來嘗試體驗開發安卓APP,畢竟是使用Visual Studio開發工具,使用起來也比較的順手,結合微軟官方的教程進行了安卓 ...
  • 前言 QuestPDF 是一個開源 .NET 庫,用於生成 PDF 文檔。使用了C# Fluent API方式可簡化開發、減少錯誤並提高工作效率。利用它可以輕鬆生成 PDF 報告、發票、導出文件等。 項目介紹 QuestPDF 是一個革命性的開源 .NET 庫,它徹底改變了我們生成 PDF 文檔的方 ...
  • 項目地址 項目後端地址: https://github.com/ZyPLJ/ZYTteeHole 項目前端頁面地址: ZyPLJ/TreeHoleVue (github.com) https://github.com/ZyPLJ/TreeHoleVue 目前項目測試訪問地址: http://tree ...
  • 話不多說,直接開乾 一.下載 1.官方鏈接下載: https://www.microsoft.com/zh-cn/sql-server/sql-server-downloads 2.在下載目錄中找到下麵這個小的安裝包 SQL2022-SSEI-Dev.exe,運行開始下載SQL server; 二. ...
  • 前言 隨著物聯網(IoT)技術的迅猛發展,MQTT(消息隊列遙測傳輸)協議憑藉其輕量級和高效性,已成為眾多物聯網應用的首選通信標準。 MQTTnet 作為一個高性能的 .NET 開源庫,為 .NET 平臺上的 MQTT 客戶端與伺服器開發提供了強大的支持。 本文將全面介紹 MQTTnet 的核心功能 ...
  • Serilog支持多種接收器用於日誌存儲,增強器用於添加屬性,LogContext管理動態屬性,支持多種輸出格式包括純文本、JSON及ExpressionTemplate。還提供了自定義格式化選項,適用於不同需求。 ...
  • 目錄簡介獲取 HTML 文檔解析 HTML 文檔測試參考文章 簡介 動態內容網站使用 JavaScript 腳本動態檢索和渲染數據,爬取信息時需要模擬瀏覽器行為,否則獲取到的源碼基本是空的。 本文使用的爬取步驟如下: 使用 Selenium 獲取渲染後的 HTML 文檔 使用 HtmlAgility ...
  • 1.前言 什麼是熱更新 游戲或者軟體更新時,無需重新下載客戶端進行安裝,而是在應用程式啟動的情況下,在內部進行資源或者代碼更新 Unity目前常用熱更新解決方案 HybridCLR,Xlua,ILRuntime等 Unity目前常用資源管理解決方案 AssetBundles,Addressable, ...
  • 本文章主要是在C# ASP.NET Core Web API框架實現向手機發送驗證碼簡訊功能。這裡我選擇是一個互億無線簡訊驗證碼平臺,其實像阿裡雲,騰訊雲上面也可以。 首先我們先去 互億無線 https://www.ihuyi.com/api/sms.html 去註冊一個賬號 註冊完成賬號後,它會送 ...
  • 通過以下方式可以高效,並保證數據同步的可靠性 1.API設計 使用RESTful設計,確保API端點明確,並使用適當的HTTP方法(如POST用於創建,PUT用於更新)。 設計清晰的請求和響應模型,以確保客戶端能夠理解預期格式。 2.數據驗證 在伺服器端進行嚴格的數據驗證,確保接收到的數據符合預期格 ...