Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

Goroutine并发控制 — WalkingSun #61

Open
WalkingSun opened this issue Feb 13, 2020 · 0 comments
Open

Goroutine并发控制 — WalkingSun #61

WalkingSun opened this issue Feb 13, 2020 · 0 comments

Comments

@WalkingSun
Copy link
Owner

https://walkingsun.github.io/WindBlog/2020/02/08/go-routine/

创建协程 jobCount := 10 // sync.WaitGroup 监控所有协程的状态,从而保证主协程结束时所有的子协程已经退出 group := sync.WaitGroup{} for i:=0;i < jobCount;i++ { group.Add(1) go func(i int) { fmt.Println(

Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment
Projects
None yet
Development

No branches or pull requests

1 participant