golang单例模式的优雅实现
夜空一起砍猩猩 · · 2286 次点击 · · 开始浏览通过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.
有疑问加站长微信联系(非本文作者)
入群交流(和以上内容无关):加入Go大咖交流群,或添加微信:liuxiaoyan-s 备注:入群;或加QQ群:692541889
关注微信- 请尽量让自己的回复能够对别人有帮助
- 支持 Markdown 格式, **粗体**、~~删除线~~、
`单行代码` - 支持 @ 本站用户;支持表情(输入 : 提示),见 Emoji cheat sheet
- 图片支持拖拽、截图粘贴等方式上传
收入到我管理的专栏 新建专栏
通过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.