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 TLS1.2协议通信解密
  • ¥40 图书信息管理系统程序编写
  • ¥20 Qcustomplot缩小曲线形状问题
  • ¥15 企业资源规划ERP沙盘模拟
  • ¥15 树莓派控制机械臂传输命令报错,显示摄像头不存在
  • ¥15 前端echarts坐标轴问题
  • ¥15 ad5933的I2C
  • ¥15 请问RTX4060的笔记本电脑可以训练yolov5模型吗?
  • ¥15 数学建模求思路及代码
  • ¥50 silvaco GaN HEMT有栅极场板的击穿电压仿真问题