这里的sender和receiver有问题
这里的接收和发送类型定义反了,应该是这样
type sender <-chan int type receive chan<- int
<-chan这里表示这个通道只能发送,即发送者
chan<-这里表示通道只能接受,即接收者
这里的接收和发送类型定义反了,应该是这样
type sender <-chan int type receive chan<- int
<-chan这里表示这个通道只能发送,即发送者
chan<-这里表示通道只能接受,即接收者
2020-06-18
举报