摘要: package main import ( "fmt" "math/rand" "sync" "time" ) var wg sync.WaitGroup func f1(i int) { wg.Done() fmt.Println(i) } func main() { rand.Seed(time 阅读全文
posted @ 2021-06-27 15:08 蜗牛的礼物 阅读(58) 评论(0) 推荐(0) 编辑