作者热门文章
- html - 出于某种原因,IE8 对我的 Sass 文件中继承的 html5 CSS 不友好?
- JMeter 在响应断言中使用 span 标签的问题
- html - 在 :hover and :active? 上具有不同效果的 CSS 动画
- html - 相对于居中的 html 内容固定的 CSS 重复背景?
Main {
go routine_1(carryout a time consuming task and return output)
go routine_2(wait for output from routine_1, collect output and do task_2)
go routine_3(wait for output from routine_1, collect output and do task_3)
wait for all routines to complete
}
package main
import (
"fmt"
"sync"
)
func computeResult() int {
return 100
}
func main() {
var wg sync.WaitGroup
wg.Add(2)
var output int
ch := make(chan struct{})
// Compute result
go func() {
defer wg.Done()
output = computeResult()
fmt.Println("closing channel to signal task done")
close(ch)
fmt.Println("channel closed")
}()
go func() {
defer wg.Done()
// Wait for ch close
<-ch
fmt.Println(output)
}()
wg.Wait()
var wg2 sync.WaitGroup
wg2.Add(1)
go func() {
defer wg2.Done()
fmt.Println("wait on closed channel")
// Wait for ch close
<-ch
fmt.Println(output)
}()
wg2.Wait()
}
最佳答案
您可以在第一个例程完成后调用其他两个例程:
var wg sync.WaitGroup
wg.Add(2)
go func() {
output := task1()
go func() {
defer wg.done()
task2(output)
}
go func() {
defer wg.done()
task3(output)
}
}()
wg.Wait()
关于go - 如何让多个 goroutine 等待另一个 goroutine 的输出,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/58346641/
我是一名优秀的程序员,十分优秀!