golang单例模式的优雅实现

夜空一起砍猩猩 · · 1734 次点击 · · 开始浏览    
这是一个创建于 的文章,其中的信息可能已经有所发展或是发生改变。

通过sync.Once实例来保证一个Once实例的Do只会执行一次,无论Do里的func有多个或者一个,利用这个特性来实现设计模式里的单例模式,golang里没有类这个东西,所以拿结构体来测试:

type singleton struct{}

var ins *singleton

var once sync.Once 

func GetIns() *singleton {

  once.Do(func(){

  ins = &singleton{}

  //ins = new(singleton)

})

return ins

}


sync.Once doc:

type Once

Once is an object that will perform exactly one action.

type Once struct {

    // contains filtered or unexported fields

}

func (*Once) Do

func (o *Once) Do(f func())

Do calls the function f if and only if Do is being called for the first time for this instance of Once. In other words, given

var once Once

if once.Do(f) is called multiple times, only the first call will invoke f, even if f has a different value in each invocation. A new instance of Once is required for each function to execute.


有疑问加站长微信联系(非本文作者)

本文来自:简书

感谢作者:夜空一起砍猩猩

查看原文:golang单例模式的优雅实现

入群交流(和以上内容无关):加入Go大咖交流群,或添加微信:liuxiaoyan-s 备注:入群;或加QQ群:692541889

1734 次点击  
加入收藏 微博
3 回复  |  直到 2019-02-17 23:12:48
暂无回复
添加一条新回复 (您需要 登录 后才能回复 没有账号 ?)
  • 请尽量让自己的回复能够对别人有帮助
  • 支持 Markdown 格式, **粗体**、~~删除线~~、`单行代码`
  • 支持 @ 本站用户;支持表情(输入 : 提示),见 Emoji cheat sheet
  • 图片支持拖拽、截图粘贴等方式上传