求助关于os ,io,write 后read的问题

wangbintao1992 · · 852 次点击 · 开始浏览    置顶
这是一个创建于 的主题,其中的信息可能已经有所发展或是发生改变。

```go func main() { bytes := make([]byte, 10) file, _ := os.OpenFile("D://tmp.log",os.O_CREATE | os.O_RDWR|os.O_APPEND, 0666) file.Read(bytes) fmt.Println(1,bytes) fmt.Println(2,string(bytes)) file.Write([]byte("why why why")) file.Sync() bytes2 := make([]byte, 10) _, err := file.Read(bytes2) fmt.Println(err) fmt.Println(3,bytes2) fmt.Println(4,string(bytes2)) } # output 1 [97 115 100 97 115 100 115 97 100 115] 2 asdasdsads EOF 3 [0 0 0 0 0 0 0 0 0 0] 4 ``` 为啥file,sync后就不能read了?,获取不到锁么? write 后read,返回EOF,文件本身数据还没读完,为啥会EOF API也没什么说明,是我哪里遗漏了么....

有疑问加站长微信联系(非本文作者)

入群交流(和以上内容无关):加入Go大咖交流群,或添加微信:liuxiaoyan-s 备注:入群;或加QQ群:692541889

852 次点击  
加入收藏 微博
2 回复  |  直到 2017-12-20 07:47:38
暂无回复
添加一条新回复 (您需要 登录 后才能回复 没有账号 ?)
  • 请尽量让自己的回复能够对别人有帮助
  • 支持 Markdown 格式, **粗体**、~~删除线~~、`单行代码`
  • 支持 @ 本站用户;支持表情(输入 : 提示),见 Emoji cheat sheet
  • 图片支持拖拽、截图粘贴等方式上传