單例設(shè)計模式記錄

寫在前面

單例設(shè)計模式赎瞎,相信是大家接觸設(shè)計模式時的入門設(shè)計模式牌里,它理解起來比較簡單颊咬,當(dāng)然實現(xiàn)起來也很簡單务甥,但是別看不上這簡單的東西牡辽,簡單的事情重復(fù)做將不再簡單,再復(fù)雜的事情拆分開來也是由很多簡單的事情的集合敞临。接下來來過一遍三種經(jīng)典的單例模式态辛。

單例模式三個主要特點(diǎn):

  • 1、構(gòu)造方法私有化挺尿;
  • 2奏黑、實例化的變量引用私有化;
  • 3编矾、獲取實例的方法共有熟史。

1、雙重否定單例模式

public class DCLSingleton implements Serializable {
    private static final long serialVersionUID = 6242241249985894658L;
    /**
     * volatile :內(nèi)存中可見 和 防止指令重排
     * 這里主要作用是防止指令重排
     */
    private volatile static DCLSingleton instance;
    
    private DCLSingleton() {
    }
    
    public static DCLSingleton getInstance() {
        if (instance == null) {
            synchronized (DCLSingleton.class) {
                if (instance == null) {
                    instance = new DCLSingleton();
                }
            }
        }
        return instance;
    }
    public void singletonFunction() {
        System.out.println("DCLSingleton test.");
    }
}

2窄俏、登記式/靜態(tài)內(nèi)部類單例模式

public class StaticSingleton implements Serializable {
    private static final long serialVersionUID = 5537012394799626447L;

    private static class SingletonHolder {
        private static final StaticSingleton INSTANCE = new StaticSingleton();
    }
    private StaticSingleton(){}
    public static final StaticSingleton getInstance() {
        return SingletonHolder.INSTANCE;
    }
    public void singletonFunction() {
        System.out.println("StaticSingleton test.");
    }
}

3蹂匹、枚舉單例模式

public enum SingletonEnum {
    /**
     * 實例
     */
    INSTANCE;

    /**
     * 方法
     */
    public void singletonFunction() {
        System.out.println("SingletonEnum test.");
    }
}

測試

以單例性和安全性 2 個方向?qū)σ陨?3 種單例模式進(jìn)行測試,看哪種比較適合

1凹蜈、序列化和反序列化測試單例性

public class TestSerializable {
    public static void main(String[] args) throws IOException, ClassNotFoundException {
        System.out.println("----------------雙重否定單例模式測試開始-----------------------------");
        DCLSingleton instance_1 = DCLSingleton.getInstance();
        ByteArrayOutputStream byteArrayOutputStream_1 = new ByteArrayOutputStream();
        new ObjectOutputStream(byteArrayOutputStream_1).writeObject(instance_1);

        ObjectInputStream objectInputStream_1 = new ObjectInputStream(new ByteArrayInputStream(byteArrayOutputStream_1.toByteArray()));
        DCLSingleton singleton_1 = (DCLSingleton) objectInputStream_1.readObject();

        //com.songo.singletonpattern.service.SingletonPattern1@27c170f0
        System.out.println(instance_1);
        //com.songo.singletonpattern.service.SingletonPattern1@3d494fbf
        System.out.println(singleton_1);
        //DCLSingleton test.
        singleton_1.singletonFunction();
        //序列化和反序列化后是否相同:false
        System.out.println("序列化和反序列化后是否相同:" + (instance_1 == singleton_1));
        System.out.println("----------------雙重否定單例模式測試結(jié)束-----------------------------");

        System.out.println("----------------靜態(tài)內(nèi)部類單例模式測試開始---------------------------");
        StaticSingleton instance_2 = StaticSingleton.getInstance();
        ByteArrayOutputStream byteArrayOutputStream_2 = new ByteArrayOutputStream();
        new ObjectOutputStream(byteArrayOutputStream_2).writeObject(instance_2);

        ObjectInputStream objectInputStream_2 = new ObjectInputStream(new ByteArrayInputStream(byteArrayOutputStream_2.toByteArray()));
        StaticSingleton singleton_2 = (StaticSingleton) objectInputStream_2.readObject();

        //com.songo.singletonpattern.service.StaticSingleton@7cd84586
        System.out.println(instance_2);
        //com.songo.singletonpattern.service.StaticSingleton@30dae81
        System.out.println(singleton_2);
        //StaticSingleton test.
        singleton_2.singletonFunction();
        //序列化和反序列化后是否相同:false
        System.out.println("序列化和反序列化后是否相同:" + (instance_2==singleton_2));
        System.out.println("----------------靜態(tài)內(nèi)部類單例模式測試結(jié)束---------------------------");

        System.out.println("----------------枚舉單例模式測試結(jié)束---------------------------------");
        SingletonEnum instance_3 = SingletonEnum.INSTANCE;
        ByteArrayOutputStream byteArrayOutputStream_3 = new ByteArrayOutputStream();
        new ObjectOutputStream(byteArrayOutputStream_3).writeObject(instance_3);

        ObjectInputStream objectInputStream_3 = new ObjectInputStream(new ByteArrayInputStream(byteArrayOutputStream_3.toByteArray()));
        SingletonEnum singleton_3 = (SingletonEnum) objectInputStream_3.readObject();

        //INSTANCE
        System.out.println(instance_3);
        //INSTANCE
        System.out.println(singleton_3);
        //SingletonEnum test.
        singleton_3.singletonFunction();
        //序列化和反序列化后是否相同:true
        System.out.println("序列化和反序列化后是否相同:" + (instance_3==singleton_3));
        System.out.println("----------------枚舉單例模式測試結(jié)束---------------------------------");

    }
}

由程序結(jié)果可知枚舉單例模式通過序列化和反序列化操作后對象沒有改變限寞,單例性夠強(qiáng),此處枚舉單例模式完勝

2仰坦、通過反射測試安全性

public class Testreflect {
    public static void main(String[] args) throws NoSuchMethodException, IllegalAccessException, InvocationTargetException, InstantiationException {
        System.out.println("----------------雙重否定單例模式測試開始-----------------------------");
        DCLSingleton instance_1 = DCLSingleton.getInstance();
        Constructor constructor_1 = DCLSingleton.class.getDeclaredConstructor();
        constructor_1.setAccessible(true);
        DCLSingleton newInstance_1 = (DCLSingleton) constructor_1.newInstance();

        //com.songo.singletonpattern.service.SingletonPattern1@4d7e1886
        System.out.println(instance_1);
        //com.songo.singletonpattern.service.SingletonPattern1@3cd1a2f1
        System.out.println(newInstance_1);
        //DCLSingleton test.
        newInstance_1.singletonFunction();
        //通過反射得到的對象和原來是否相同:false
        System.out.println("通過反射得到的對象和原來是否相同:" + (instance_1 == newInstance_1));
        System.out.println("----------------雙重否定單例模式測試結(jié)束-----------------------------");

        System.out.println("----------------靜態(tài)內(nèi)部類單例模式測試開始---------------------------");
        StaticSingleton instance_2 = StaticSingleton.getInstance();
        Constructor constructor_2 = StaticSingleton.class.getDeclaredConstructor();
        constructor_2.setAccessible(true);
        StaticSingleton newInstance_2 = (StaticSingleton) constructor_2.newInstance();

        //com.songo.singletonpattern.service.SingletonPattern2@2f0e140b
        System.out.println(instance_2);
        //com.songo.singletonpattern.service.SingletonPattern2@7440e464
        System.out.println(newInstance_2);
        //StaticSingleton test.
        newInstance_2.singletonFunction();
        //通過反射得到的對象和原來是否相同:false
        System.out.println("通過反射得到的對象和原來是否相同:" + (instance_2 == newInstance_2));
        System.out.println("----------------靜態(tài)內(nèi)部類單例模式測試結(jié)束---------------------------");

        System.out.println("----------------枚舉單例模式測試開始---------------------------------");
        //枚舉沒有無參構(gòu)造方法履植,這里加上參數(shù)
        SingletonEnum instance_3 = SingletonEnum.INSTANCE;
        Constructor constructor_3 = SingletonEnum.class.getDeclaredConstructor(String.class,int.class);
        constructor_3.setAccessible(true);
        //異常 Cannot reflectively create enum objects
        SingletonEnum newInstance_3 = (SingletonEnum) constructor_3.newInstance("test",111);

        System.out.println(instance_3);
        System.out.println(newInstance_3);
        newInstance_3.singletonFunction();
        System.out.println(instance_3 == newInstance_3);
        System.out.println("----------------枚舉單例模式測試結(jié)束---------------------------------");
    }

由程序結(jié)果可知枚舉單例模式?jīng)]有無參的構(gòu)造方法,即使構(gòu)造有參的構(gòu)造方法反射也不通過悄晃,報異常 Cannot reflectively create enum objects 玫霎,安全性夠強(qiáng),此處枚舉單例模式完勝

代碼詳情可參考源碼妈橄,github:https://github.com/charmsongo/songo-code-samples/tree/master/singleton-pattern

如果有哪些不對的地方煩請指認(rèn)鼠渺,先行感謝

?著作權(quán)歸作者所有,轉(zhuǎn)載或內(nèi)容合作請聯(lián)系作者
  • 序言:七十年代末,一起剝皮案震驚了整個濱河市眷细,隨后出現(xiàn)的幾起案子赛糟,更是在濱河造成了極大的恐慌,老刑警劉巖钓猬,帶你破解...
    沈念sama閱讀 211,290評論 6 491
  • 序言:濱河連續(xù)發(fā)生了三起死亡事件誊锭,死亡現(xiàn)場離奇詭異,居然都是意外死亡校读,警方通過查閱死者的電腦和手機(jī)沼侣,發(fā)現(xiàn)死者居然都...
    沈念sama閱讀 90,107評論 2 385
  • 文/潘曉璐 我一進(jìn)店門,熙熙樓的掌柜王于貴愁眉苦臉地迎上來歉秫,“玉大人蛾洛,你說我怎么就攤上這事。” “怎么了轧膘?”我有些...
    開封第一講書人閱讀 156,872評論 0 347
  • 文/不壞的土叔 我叫張陵钞螟,是天一觀的道長。 經(jīng)常有香客問我谎碍,道長鳞滨,這世上最難降的妖魔是什么? 我笑而不...
    開封第一講書人閱讀 56,415評論 1 283
  • 正文 為了忘掉前任蟆淀,我火速辦了婚禮拯啦,結(jié)果婚禮上,老公的妹妹穿的比我還像新娘熔任。我一直安慰自己褒链,他們只是感情好,可當(dāng)我...
    茶點(diǎn)故事閱讀 65,453評論 6 385
  • 文/花漫 我一把揭開白布疑苔。 她就那樣靜靜地躺著碱蒙,像睡著了一般。 火紅的嫁衣襯著肌膚如雪夯巷。 梳的紋絲不亂的頭發(fā)上赛惩,一...
    開封第一講書人閱讀 49,784評論 1 290
  • 那天,我揣著相機(jī)與錄音趁餐,去河邊找鬼喷兼。 笑死,一個胖子當(dāng)著我的面吹牛后雷,可吹牛的內(nèi)容都是我干的季惯。 我是一名探鬼主播,決...
    沈念sama閱讀 38,927評論 3 406
  • 文/蒼蘭香墨 我猛地睜開眼臀突,長吁一口氣:“原來是場噩夢啊……” “哼勉抓!你這毒婦竟也來了?” 一聲冷哼從身側(cè)響起候学,我...
    開封第一講書人閱讀 37,691評論 0 266
  • 序言:老撾萬榮一對情侶失蹤藕筋,失蹤者是張志新(化名)和其女友劉穎,沒想到半個月后梳码,有當(dāng)?shù)厝嗽跇淞掷锇l(fā)現(xiàn)了一具尸體隐圾,經(jīng)...
    沈念sama閱讀 44,137評論 1 303
  • 正文 獨(dú)居荒郊野嶺守林人離奇死亡,尸身上長有42處帶血的膿包…… 初始之章·張勛 以下內(nèi)容為張勛視角 年9月15日...
    茶點(diǎn)故事閱讀 36,472評論 2 326
  • 正文 我和宋清朗相戀三年掰茶,在試婚紗的時候發(fā)現(xiàn)自己被綠了暇藏。 大學(xué)時的朋友給我發(fā)了我未婚夫和他白月光在一起吃飯的照片。...
    茶點(diǎn)故事閱讀 38,622評論 1 340
  • 序言:一個原本活蹦亂跳的男人離奇死亡濒蒋,死狀恐怖盐碱,靈堂內(nèi)的尸體忽然破棺而出,到底是詐尸還是另有隱情,我是刑警寧澤瓮顽,帶...
    沈念sama閱讀 34,289評論 4 329
  • 正文 年R本政府宣布县好,位于F島的核電站,受9級特大地震影響趣倾,放射性物質(zhì)發(fā)生泄漏聘惦。R本人自食惡果不足惜某饰,卻給世界環(huán)境...
    茶點(diǎn)故事閱讀 39,887評論 3 312
  • 文/蒙蒙 一儒恋、第九天 我趴在偏房一處隱蔽的房頂上張望。 院中可真熱鬧黔漂,春花似錦诫尽、人聲如沸。這莊子的主人今日做“春日...
    開封第一講書人閱讀 30,741評論 0 21
  • 文/蒼蘭香墨 我抬頭看了看天上的太陽。三九已至减途,卻和暖如春酣藻,著一層夾襖步出監(jiān)牢的瞬間,已是汗流浹背鳍置。 一陣腳步聲響...
    開封第一講書人閱讀 31,977評論 1 265
  • 我被黑心中介騙來泰國打工辽剧, 沒想到剛下飛機(jī)就差點(diǎn)兒被人妖公主榨干…… 1. 我叫王不留,地道東北人税产。 一個月前我還...
    沈念sama閱讀 46,316評論 2 360
  • 正文 我出身青樓怕轿,卻偏偏與公主長得像,于是被迫代替她去往敵國和親辟拷。 傳聞我的和親對象是個殘疾皇子撞羽,可洞房花燭夜當(dāng)晚...
    茶點(diǎn)故事閱讀 43,490評論 2 348