Created
August 12, 2014 05:02
-
-
Save chai2010/4a183d36411a13322194 to your computer and use it in GitHub Desktop.
禁止main退出的方法
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
| 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