并发
2019-12-25 本文已影响0人
sphinxLike
控制并发有两种经典方式,
WaitGroup:控制多个goroutine同时,
var wg Sync.waitGroup
wg.Add(2)
go func(){}()
go func(){}()
)
chan…select
Context:
ctx,cancel := context.WithCancel(context.Background())
for {
select {
case
}
}