go语言执行等待直到后台goroutine执行完成实例分析
2018-10-15 17:08
阅读:523
本文实例分析了go语言执行等待直到后台goroutine执行完成的用法。分享给大家供大家参考。具体如下:
复制代码 代码如下:
var w sync.WaitGroup
w.Add(2)
go func() {
// do something
w.Done()
}
go func() {
// do something
w.Done()
}
w.Wait()
希望本文所述对大家的Go语言程序设计有所帮助。
文章来自:搜素材网的编程语言模块,转载请注明文章出处。
文章标题:go语言执行等待直到后台goroutine执行完成实例分析
文章链接:http://soscw.com/essay/18346.html
文章标题:go语言执行等待直到后台goroutine执行完成实例分析
文章链接:http://soscw.com/essay/18346.html
评论
亲,登录后才可以留言!