首页
Python
Java
前端
数据库
Linux
Chatgpt专题
开发者工具箱
channelbuffer专题
go | channel direction、channel sync、channelbuffer
go 中的管道通信 管道通信直连,管道的特点就是单工,一方只能接受/发送 package mainimport ("fmt")func ping(pings chan<- string, msg string){pings <- msg}/*函数pong中 参数pings 是一个接收通道(只能从管道接收数据)参数pongs 是一个发送通道(只能发送数据给管道)<- 在最前头
阅读更多...