Golang 协程控制关闭

部分代码参考: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 } 这种结构的时候就比较尴尬了。

不过这种方法用在  递归调用的时候  相当好用的   就是  go func(    go func1(  go func2()))   这种一个协程调用另一个协程一直这样的时候发现有问题了,就可以一个cancel()全部退出。

你可能感兴趣的:(golang)