企业🤖AI智能体构建引擎,智能编排和调试,一键部署,支持私有化部署方案 广告
## 单向信道 单向信道只能发送或者接收数据 使用场景:双向信道转换成唯送信道或者唯收(Receive Only)信道 ``` chan<- int // 唯写同道 <-chan int //唯独同道 ``` 从唯写通道读取数据:`receive from send-only type chan<- int` 往唯读通道写数据:`send to receive-only type <-chan int`