去例程没有收到通过频道发送的所有数据 - 玩具示例程序

时间:2015-12-29 00:50:40

标签: go channel goroutine

我只是在玩Go,可以试试吧。我遇到的问题是,只有接收3整数的go例程才会收到一个。

type simpleFunction func() int

func run(fChan chan simpleFunction, result chan int) {
  for{
    select {
    case fn := <-fChan:
      fmt.Printf("sending: %d down result chan\n", fn())
      result <- fn()
    case <-time.After(time.Second * 2):
      close(fChan)
    }
  }
}

func recieve(result chan int){
  for {
    select {
    case x := <-result:
      fmt.Printf("recieved: %d from result chan\n", x)
    case <-time.After(time.Second * 2):
      close(result)
    }
  }
}

因此,您可以看到run例程接收函数,对它们进行评估,然后将结果发送到result频道。

这是我的main / test

func main() {
  fns := []simpleFunction{
    func() int {return 1},
    func() int {return 2},
    func() int {return 3},
  }

  fChan := make(chan simpleFunction)
  result := make(chan int)

  go run(fChan, result)
  go recieve(result)
  for _, fn := range fns {
    fmt.Printf("sending a function that returns: %d down function chan\n", fn())
    fChan <- fn
  }
} 

这是我的输出:

sending a function that returns: 1 down function chan
sending: 1 down result chan
recieved: 1 from result chan
sending a function that returns: 2 down function chan
sending a function that returns: 3 down function chan
sending: 2 down result chan
sending: 3 down result chan

所以,正如你所看到的,对于第一个功能来说,一切似乎都在游动,但事后并不那么热。任何提示或建议?

1 个答案:

答案 0 :(得分:2)

此代码存在以下几个问题:

  • 主程序返回时程序终止。它不会等待runreceive goroutines完成。
  • 关闭频道的比赛。在超时之前,不保证发送方将发送最多。
  • 如果main没有退出,那么for { select { } }循环将永远打印零值。在封闭通道上接收返回零值。