douren7179 2018-08-09 13:26
浏览 27
已采纳

如何等待第一个完成的goroutine

I have two algorithm for same task, one is best for some cases and one for some other cases.

So I would like to start two goroutines at the same time whenever processing the task, and only use the result returned by the first finished goroutine.

Also, in the result, I need to know it is returned by which algorithm. And if I think the first returned result is not right, I would like to wait for the second result.

I read thru the doc of https://golang.org/pkg/sync/, seems it can only wait for all goroutine finish.

How can I implement this idea in golang?

  • 写回答

2条回答 默认 最新

  • dongren5293 2018-08-09 14:23
    关注

    I don't think you need to use sync, though I'm sure you could come up with a solution that does. I think the simplest solution is to:

    1. Create a new channel for each piece of data. I'm not sure of the performance impact of this, so you might do some checking on that.
    2. Send the same output channel to both algorithms.
    3. Take the first value that comes off the channel and see if you like it.
    4. If you don't, take the second value.
    5. Continue without worrying about the open channel. We have garbage collection in go.

    Something like this:

    type Result struct {
        Value     string
        Algorithm string
    }
    
    func (r *Result) String() string {
        return r.Value
    }
    
    func A(in string, out chan *Result) {
        out <- &Result{"A", "A"}
    }
    
    func B(in string, out chan *Result) {
        out <- &Result{"B", "B"}
    }
    
    func main() {
        data := []string{"foo", "bar", "baz"}
    
        for _, datum := range data {
            resultChan := make(chan *Result, 2)
            expectedResult := "B"
    
            go A(datum, resultChan)
            go B(datum, resultChan)
    
            result := <-resultChan
            if result.Value != expectedResult {
                fmt.Println("Unexpected result: ", result)
                result = <-resultChan
            }
    
            fmt.Println("Got result: ", result)
        }
    }
    
    本回答被题主选为最佳回答 , 对您是否有帮助呢?
    评论
查看更多回答(1条)

报告相同问题?

悬赏问题

  • ¥15 做个有关计算的小程序
  • ¥15 MPI读取tif文件无法正常给各进程分配路径
  • ¥15 如何用MATLAB实现以下三个公式(有相互嵌套)
  • ¥30 关于#算法#的问题:运用EViews第九版本进行一系列计量经济学的时间数列数据回归分析预测问题 求各位帮我解答一下
  • ¥15 setInterval 页面闪烁,怎么解决
  • ¥15 如何让企业微信机器人实现消息汇总整合
  • ¥50 关于#ui#的问题:做yolov8的ui界面出现的问题
  • ¥15 如何用Python爬取各高校教师公开的教育和工作经历
  • ¥15 TLE9879QXA40 电机驱动
  • ¥20 对于工程问题的非线性数学模型进行线性化