问个问题 文件读写的,buf [] byte 里面不应该有值啊。。

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

stdio.go ```go package io import ( "fmt" "os" ) type FileReader struct { FileName string } func (file *FileReader) Read(buf []byte) (length int, err error) { fd, err := os.Open(file.FileName) fd.Read(buf) return len(buf), err } ``` stdio_test.go ```go package io import ( "fmt" "io" "testing" ) func TestFileReader(t *testing.T) { var fileReader io.Reader = &FileReader{"testfile.md"} var buf []byte = make([]byte, 1024) fmt.Printf("value buf [] byte after passed addr = %p \n", &buf) length, err := fileReader.Read(buf) if err == nil { fmt.Printf("length==%d,err==%v,file==%s \n", length, err, string(buf)) } else { fmt.Printf("length==%d,err==%v,file==%s \n", length, err, string(buf)) } } ``` builtin.go 关于 make的说明 ,返回的是一个value 类型而不是一个指针 ```go // The make built-in function allocates and initializes an object of type // slice, map, or chan (only). Like new, the first argument is a type, not a // value. Unlike new, make's return type is the same as the type of its // argument, not a pointer to it. func make(t Type, size ...IntegerType) Type ``` 输出结果: ``` value buf [] byte addr = 0xc00005a420 value buf [] byte after passed addr = 0xc00005a460 length==1024,err==<nil>,file==# this is Test file ``` 而golang 里面 对于 value 类型的值在函数调用时,会传递这个的值的副本 指针的值会变(输出会说明) 那么我想问的是最终buf里面会什么会有值 就是文档里面的文本 。。不应该是全0么? go是怎么操作的?

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

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

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