awesome-patterns/defer/main.go

42 lines
1.2 KiB
Go
Raw Normal View History

2018-01-11 08:45:43 +03:00
package main
import "fmt"
// Sample code is taken from online tutorial https://blog.learngoprogramming.com/gotchas-of-defer-in-go-1-8d070894cb01
// it demostrate all the common GOTCHA when using defer.
// If a deferred func evaluates to nil, execution panic when surrounding func ends not when defer is called
func nilFuncDefer() {
var run func() = nil
defer run()
fmt.Println("runs")
}
2018-01-12 07:27:12 +03:00
// Do not use defer inside a loop unless you are sure about what you are doing. It may not work as expected.
// However, in some situations it will be handy for instance,delegating the recursivity of a func to a defer.
func deferInsideLoop() {
2018-01-12 08:02:10 +03:00
nums := []int{1, 2, 3, 4, 5, 6, 7, 8, 9, 10, 11, 12, 13}
for _, v := range nums {
defer func(v int) {
fmt.Println(v)
}(v)
}
2018-01-12 07:27:12 +03:00
}
2018-01-12 08:08:16 +03:00
// The deferred func above will only run when the func ends not when the deferred funcs surrounding block ends
// (the area inside curly braces containing the defer call). As seen in the example code, you can create separate blocks just using curly braces.
func block() {
{
defer func() {
fmt.Println("block: defer runs")
}()
}
fmt.Println("main: ends")
}
2018-01-11 08:45:43 +03:00
func main() {
2018-01-12 08:02:10 +03:00
// nilFuncDefer()
2018-01-12 08:08:16 +03:00
// deferInsideLoop()
block()
2018-01-11 08:45:43 +03:00
}