func main() { n := 0 go func() { for { n = n+1 } }() for { fmt.Println(n) } }
为什么这种情况依然会产生竞争
莫回无
相关分类