摘要: 2022-07-28:以下go语言代码输出什么?A:AA;B:AB;C:BA;D:BB。 package main import ( "fmt" ) func main() { f := func() { fmt.Print("A") } defer f() f = func() { fmt.Pri 阅读全文
posted @ 2022-07-28 20:55 福大大架构师每日一题 阅读(11) 评论(0) 推荐(0) 编辑