摘要:
C 的 read,pread 这两个接口对应的是 Golang 的 Read 和 ReadAt 这两个接口,C 的 read,pread 除了传入参数有区别,其他语义是完全一致的。golang有区别 Golang 里面 Read 接口对于读的结果有这么几种情况: 读成功了,数据完全填充 buffer 阅读全文
posted @ 2023-01-14 16:35
balabalahhh
阅读(196)
评论(0)
推荐(0)
摘要:
1.配置环境变量 对于Linux和Mac用户,mkdir /data/go_path vim ~/.bashrc加入以下几行 export GOROOT=/usr/local/go ($GOROOT和$GOPATH这两个路径完全可以自定义) export GOPATH=/data/go_path e 阅读全文
posted @ 2023-01-14 15:34
balabalahhh
阅读(39)
评论(0)
推荐(0)