Created
November 16, 2016 08:04
-
-
Save duguying/651b65975e075c14e1e4160d95ad7e97 to your computer and use it in GitHub Desktop.
a demo for usage of defer
This file contains 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
package main | |
import ( | |
"fmt" | |
) | |
func main() { | |
// defer 的调用是在当前函数 返回之前;多个defer的调用顺序是反向的 | |
defer fmt.Println("Fourth") | |
panic("exit") | |
fmt.Println("First") | |
fmt.Println("Third") | |
} |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment