Skip to content

Instantly share code, notes, and snippets.

@xin053
Last active July 5, 2019 09:42
Show Gist options
  • Select an option

  • Save xin053/faed5986bb5852326de092975c870eb9 to your computer and use it in GitHub Desktop.

Select an option

Save xin053/faed5986bb5852326de092975c870eb9 to your computer and use it in GitHub Desktop.
[go singleton] go singleton #go #singleton
// 通过 sync/Once 实现单例
var (
instance *singleton
once sync.Once
)
func Instance() *singleton {
once.Do(func() {
instance = &singleton{}
})
return instance
}
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment