摘要: func f1() int { x := 5 defer func() { x++ }() return x } func f2() (x int) { defer func() { x++ }() return 5 } func main() { fd := f1() fmt.Printf("fd 阅读全文
posted @ 2022-03-05 21:36 咖喱给给啊 阅读(165) 评论(0) 推荐(0)