代码:https://github.com/NIGHTFIGHTING/go_learning/blob/master/src/channel/channel.go package main import ( fmt time ) func worker(id int, c chan int) { for { n, ok := <-c if !ok { break } fmt.Printf(Worker %d received %c\n, id,