同时 current.Map:低于1.9的backport sync.Map。 parallel.Executor:具有明确所有权且可取消的goroutine 并发图 因为sync.Map仅在1.9中可用,所以我们可以使用current.Map使代码可移植 m := concurrent . NewMap () m . Store ( "hello" , "world" ) elem , found := m . Load ( "hello" ) // elem will be "world" // found will be true 并发执行器 executor := concurre