You can not select more than 25 topics
Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
39 lines
376 B
39 lines
376 B
package main
|
|
|
|
import "fmt"
|
|
|
|
func f1() int {
|
|
x := 5
|
|
defer func() {
|
|
x++
|
|
}()
|
|
return x
|
|
}
|
|
|
|
func f2() (x int) {
|
|
defer func() {
|
|
x++
|
|
}()
|
|
return 5
|
|
}
|
|
|
|
func f3() (y int) {
|
|
x := 5
|
|
defer func() {
|
|
x++
|
|
}()
|
|
return x
|
|
}
|
|
func f4() (x int) {
|
|
defer func(x int) {
|
|
x++
|
|
}(x)
|
|
return 5
|
|
}
|
|
func main() {
|
|
fmt.Println(f1())
|
|
fmt.Println(f2())
|
|
fmt.Println(f3())
|
|
fmt.Println(f4())
|
|
}
|