十八、Go语言之锁

📅 2024年6月20日 📦 使用版本为 1.21.5 锁 在网上找了一个列子 var wait sync.WaitGroup var count = 0 func main() { wait.Add(10) for i := 0; i < 10; i++ { go f