doushenxu7294 2018-08-27 00:44
浏览 163
已采纳

等待一个goroutine完成[重复]

This question already has an answer here:

I am running a cpu intensive script on 8 different goroutines. Each of these goroutines will take at least a few minutes to complete, and I was wondering if something like this is possible:

for i := 0; i < len(input); i += 1 {
  wait_for_number_of_processes_running_to_be_less_than_8
  go calc_math_and_things(input[i])
}
</div>
  • 写回答

1条回答 默认 最新

  • dongling4288 2018-08-27 01:08
    关注

    You could use a buffered channel to return result of a goroutine and indicate termination, and when you read from this channel you start a new go routine. Something like that:

    const maxNRoutine = 8
    var routineCtr int
    var resultCh = make(chan int, maxNRoutine)
    
    for i := 0; i < len(input); i += 1 {
        if routineCtr < maxNRoutines {
            go calc_math_and_things(resultCh, input[i])
            routineCtr++
            continue
        }
        var result = <- resultCh // go routine is done, log result and start a new one
        println(result)
        go calc_math_and_things(resultCh, intput[i])
    }
    

    Inside your routine:

    func calc_math_and_things(resultCh chan<- int, input byte) {
         // ... do some stuff
         resultCh <- 1
    }
    
    本回答被题主选为最佳回答 , 对您是否有帮助呢?
    评论

报告相同问题?

悬赏问题

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