Skip to content

Instantly share code, notes, and snippets.

@duguying
Created November 16, 2016 08:04
Show Gist options
  • Save duguying/651b65975e075c14e1e4160d95ad7e97 to your computer and use it in GitHub Desktop.
Save duguying/651b65975e075c14e1e4160d95ad7e97 to your computer and use it in GitHub Desktop.
a demo for usage of defer
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