跳到主要內容

設計模式-Singleton(獨體模式)

Singleton 定義

確保每次呼叫都只會有固定自行產生一個實例並提供給整個系統使用

Singleton 使用

  1. 單例模式可以避免產生多個物件消耗多個資源,如資料庫、IO存取
  2. 系統參數設定只需要共同一個設定,例如: andorid 中 Context系統內文

Singleton 單例案例

 
java範例
        /**
         * Name: singleton
         * Description :  To generate  onaly one database configuration  instane when it is called
         * Created by blackbryant on 2017/1/7.
         */
    public class DBConfigSinglton {
        public  static final DBConfigSinglton singlton = new DBConfigSinglton("com.mysql.jdbc.Driver","jdbc:mysql://localhost/EMP","jack","123456");
        private String className ;
        private String db_url ;
        private String user;
        private String password;

        private DBConfigSinglton(String className, String db_url, String user, String password){
            this.className = className ;
            this.db_url= db_url ;
            this.user = user ;
            this.password = password ;
        }

        public static DBConfigSinglton getInstance(){
            return singlton ;
        }
    }
 

Singleton Lazy mode

懶惰模式是當第一次呼叫getInstance()才建立實例,而案例一 是系統開啟就建立實例,所以某程度上懶惰模式節省資源的浪 費。懶惰模式呼叫getInstance()前面加上synchronized同步關鍵 字表示當每次呼叫時都需要做同步的檢查,這對效能上有很大 缺點所以不建議使用

 
    /**
     * Name: singleton
     * Description :  
     * Created by blackbryant on 2017/1/7.
     */
    public class DBConfigSingltonLazy {
        private  static  DBConfigSingltonLazy singlton = null;
        private String className ;
        private String db_url ;
        private String user;
        private String password;

        private DBConfigSingltonLazy(String className, String db_url, String user, String password){
            this.className = className ;
            this.db_url= db_url ;
            this.user = user ;
            this.password = password ;
        }

        public static synchronized DBConfigSingltonLazy getInstance(){
            if(singlton==null){
                singlton= new DBConfigSingltonLazy("com.mysql.jdbc.Driver","jdbc:mysql://localhost/EMP","jack","123456")
            }

            return singlton ;
        }

    }

Singleton- Double CheckLock(DCL)

DCL方法可以在需要時建立實例並保持執行緒安全,在呼叫 getInstance()不需要做同步檢查。DCL看起來很完美但是在高並 行的環境下是有可能出現問題或是低於JDK1.5以下

 
    /**
     * Name: singleton
     * Description : Singleton double checkLock
     * Created by blackbryant on 2017/1/7.
     */
    public class DBConfigSingltonDCL {
        private  static DBConfigSingltonDCL singlton = null;
        private String className ;
        private String db_url ;
        private String user;
        private String password;

        private DBConfigSingltonDCL(String className, String db_url, String user, String password){
            this.className = className ;
            this.db_url= db_url ;
            this.user = user ;
            this.password = password ;
        }

        public static  DBConfigSingltonDCL getInstance(){
            if(singlton==null){
                synchronized (DBConfigSingltonDCL.class) {
                    if(singlton==null)
                        singlton = new DBConfigSingltonDCL("com.mysql.jdbc.Driver", "jdbc:mysql://localhost/EMP", "jack", "123456");
                }
            }

            return singlton ;
        }
    }

Singleton- Static Inner Class

當系統載入DBConfigSingltonSIC 不會建立實例,只有在呼叫 getInstance()才會由SingetonHolder開始建立實例,這種方式不 僅物件唯一性、延遲載入也確保執行緒的安全

 
    /**
     * Name: singleton
     * Description : Static Inner Class mode
     * Created by blackbryant on 2017/1/7.
     */
    public class DBConfigSingltonSIC {
        private  static DBConfigSingltonSIC singlton = null;
        private String className ;
        private String db_url ;
        private String user;
        private String password;

        private DBConfigSingltonSIC(String className, String db_url, String user, String password){
            this.className = className ;
            this.db_url= db_url ;
            this.user = user ;
            this.password = password ;
        }

        public  static DBConfigSingltonSIC getInstance(){
            return SingletonHolder.singleton;
        }


        public static class SingletonHolder{
            private static final DBConfigSingltonSIC singleton =   new DBConfigSingltonSIC("com.mysql.jdbc.Driver", "jdbc:mysql://localhost/EMP", "jack", "123456");
        }
    }

Singleton- Enum

 
    /**
     * Name: singleton
     * Description : Static Inner Class mode
     * Created by blackbryant on 2017/1/7.
     */
    public enum DBConfigSingltonEnum {
        INSTANCE{
            public void DBConfig(){
                this.className =  "com.mysql.jdbc.Driver"  ;
                this.db_url=  "jdbc:mysql://localhost/EMP" ;
                this.user = "jack" ;
                this.password = "123456" ;
            }
        };

        private String className ;
        private String db_url ;
        private String user;
        private String password;



        public static DBConfigSingltonEnum  getInstance(){
           return DBConfigSingltonEnum.INSTANCE;
        }
    }

留言

這個網誌中的熱門文章

GSON基礎教學

GSON 前言 JSON是很常見的資料交換格式,在JAVA領域常用處理JSON的函式庫:GSON、FastXML和JSON-B,本章節會以GSON為主,學習目標如下 JSON格式說明 GSON 套件函式 GSON: 物件轉換JSON字串 GSON: JSON字串轉換物件 JSON 格式說明 JSON全名為JavaScript Object Notation,它是一種輕量級的資料交換格式,會大為流行的理由,主要是他比傳統用xml更輕巧且容易處理, JSON表達方式物件會用大括弧{},陣列則是用中括號[]。 用JSON字串來表達Employee的物件內容,由JSON字串可以知道物件name、age、sex和salary屬性。 JSON表示員工資料方式: {“name”:”Jack Bryant”, “age”:18, “sex”:”M”,”salary”:3500.00} JSON陣列表示方式: 跟我們使用JAVA的陣列方式類似,內容值可以是數字’、文字、布林、陣列、物件、null等等。 範例: 字串: [“紅”、”橙”、”黃”、”綠”、”青”、”藍”、”紫”} 布林: [true, true, false, false, true, true] GSON 套件函式 Gson為google所發布的函式庫,主要將物件與json字串之間的轉換時方便使用。當我們將JAVA物件轉換成JSON字串稱為 序列化 ,JSON字串轉換至JAVA物件稱為 反序列化 。 GSON: 物件轉換JSON字串 有了JSON基本概念後,我們進入本章重點,首先我們需要建立員工類別(Employee),定義如下 物件 屬性 員工類別 Employee name 名字 age 年紀 sex 性別 salary 薪水 /** * name:員工類別 */ public class Employee implements Serializable { //constructor public Employee(String name, double salary){ this.name = name; this.sala...

PHP與Python搭配

今天介紹如何利用php網頁呼叫目錄下的python程式工作或是資料交換,本人整理的方法有兩種 使用system()、exec()、shell_exec()呼叫程式 (1) string system ( string return_var ] ) 參考網址 官網解釋system()用來執行外部命令,返回為印出的結果,passthru()跟system()類似但是它不會返回結果。 範例1. 利用system執行ls指定並顯示在網頁上,無法使用變數保留ls的結果 檔案名稱: psystem.php $jsondata= system("ls -al", $result); 結果: (2) exec() : string exec ( string output [, int &$return_var ]] ) 參考網址 範例2. 利用exec執行python程式並可以回傳json格式給前端網頁做處理並顯示。我們ptopy.php就是可以看到callpy()為執行py的函式,它執行完pyEx01.py會將結果給$jsondata變數,做後面json解析。 檔案名稱: ptopy.php function callpy() { $jsondata= exec("/usr/bin/python pyEx01.py"); return $jsondata ; } $jsondata= callpy(); echo $jsondata ; echo " " ; $obj = json_decode($jsondata) ; echo "name:".$obj-> { 'name'} .',' ; echo "id:".$obj-> { 'id'} ; 檔案名稱: pyEx01.py import sys ...

Python AI-問題集

Python AI-問題集 問題集 Jupyter Notebook執行ipywidgets會出現kernel死掉的錯誤發生(The kernel appears to have died) 解決方法 (1) 根據log檔來判斷問題: 例如:log訊息出現OMP: Error #15: Initializing libiomp5.dylib, but found libiomp5.dylib already initialized. (2) 根據問題關鍵字找出問題所在: 利用google查詢所遭遇到的問題,例如我把上面的問題上google查詢可以找到這篇的解法 https://blog.csdn.net/bingjianIT/article/details/86182096 (3)實作解法: 我實作下面解法後,就可以順利執行手寫辨識的程式. //在Python宣告時加入 import os os.environ["KMP_DUPLICATE_LIB_OK"]="TRUE" 參考 https://blog.csdn.net/bingjianIT/article/details/86182096