部分代码参考:https://zhuanlan.zhihu.com/p/26695984  

这边文章的的


package main

import (
"context"
"fmt"
"time"
)

func main() {
ctx := context.Background()
ctx, cancel := context.WithCancel(ctx)
go Proc(ctx, 1)
go Proc(ctx, 2)
go Proc(ctx, 3)
go Proc(ctx, 4)

time.Sleep(time.Second / 10)
cancel()

time.Sleep(time.Second)
}

func Proc(ctx context.Context, n int) {
for {
select {
case <-ctx.Done():
return
default:
fmt.Printf("Proc-%d ", n)
}
}
}


这种形式的协程关闭和  自己写的区别在于   自己写的话自己要记录下协程的数量,关闭的chan等等

这种比较省事儿,不过用法还是有点局限性的,比如协程里面没有 for{select } 这种结构的时候就比较尴尬了。