golang單例模式

來源:互聯網
上載者:User
這是一個建立於 的文章,其中的資訊可能已經有所發展或是發生改變。

1、定義:單例對象的類必須保證只有一個執行個體存在,全域有唯一介面訪問。

2、分類:  

  • 懶漢方式:指全域的單例執行個體在第一次被使用時構建。
  • 餓漢方式:指全域的單例執行個體在類裝載時構建。

3、實現:

 (1)懶漢方式  

1 type singleton struct{}2 var ins *singleton3 func GetIns() *singleton{4     if ins == nil {5       ins = &singleton{}6     }7     return ins8 }

  缺點:非安全執行緒。當正在建立時,有線程來訪問此時ins = nil就會再建立,單例類就會有多個執行個體了。

(2)餓漢方式

  

1 type singleton struct{}2 var ins *singleton = &singleton{}3 func GetIns() *singleton{4     return ins5 }

  缺點:如果singleton建立初始化比較複雜耗時時,載入時間會延長。

(3)懶漢加鎖

  

 1 type singleton struct{} 2 var ins *singleton 3 var mu sync.Mutex 4 func GetIns() *singleton{ 5     mu.Lock() 6     defer mu.Unlock() 7  8     if ins == nil { 9       ins = &singleton{}10     }11     return ins12 }

  缺點:雖然解決並發的問題,但每次加鎖是要付出代價的

(4)雙重鎖

 1  type singleton struct{} 2  var ins *singleton 3  var mu sync.Mutex 4  func GetIns() *singleton{   5    if ins == nil { 6       mu.Lock() 7        defer mu.Unlock() 8        if ins == nil { 9         ins = &singleton{}10        }11     }12     return ins13 }

  避免了每次加鎖,提高代碼效率

(5)sync.Once實現

1 type singleton struct{}2 var ins *singleton3 var once sync.Once4 func GetIns() *singleton {5     once.Do(func(){6         ins = &singleton{}7     })8     return ins9 }

 

相關文章

聯繫我們

該頁面正文內容均來源於網絡整理,並不代表阿里雲官方的觀點,該頁面所提到的產品和服務也與阿里云無關,如果該頁面內容對您造成了困擾,歡迎寫郵件給我們,收到郵件我們將在5個工作日內處理。

如果您發現本社區中有涉嫌抄襲的內容,歡迎發送郵件至: info-contact@alibabacloud.com 進行舉報並提供相關證據,工作人員會在 5 個工作天內聯絡您,一經查實,本站將立刻刪除涉嫌侵權內容。

A Free Trial That Lets You Build Big!

Start building with 50+ products and up to 12 months usage for Elastic Compute Service

  • Sales Support

    1 on 1 presale consultation

  • After-Sales Support

    24/7 Technical Support 6 Free Tickets per Quarter Faster Response

  • Alibaba Cloud offers highly flexible support services tailored to meet your exact needs.