我只是在玩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
所以,正如你所看到的,对于第一个功能来说,一切似乎都在游动,但事后并不那么热。任何提示或建议?
答案 0 :(得分:2)
此代码存在以下几个问题:
run
和receive
goroutines完成。for { select { } }
循环将永远打印零值。在封闭通道上接收返回零值。