Skip to content

Instantly share code, notes, and snippets.

@chai2010
Created August 12, 2014 05:02
Show Gist options
  • Select an option

  • Save chai2010/4a183d36411a13322194 to your computer and use it in GitHub Desktop.

Select an option

Save chai2010/4a183d36411a13322194 to your computer and use it in GitHub Desktop.
禁止main退出的方法
func main() {
defer func() { for {} }()
}
func main() {
defer func() { select {} }()
}
func main() {
defer func() { <-make(chan bool) }()
}
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment