2021年8月22日
摘要: 没什么好说的, 见一个,熟悉一个: package main import ( "fmt") func main() { func() { fmt.Printf("func 1\n") }() func(x int) { fmt.Printf("func 2, x is %d\n", x) }(2) 阅读全文
posted @ 2021-08-22 14:36 Code2020 阅读(52) 评论(0) 推荐(0) 编辑