在这段代码中。package mainimport ( "fmt" "io" "os")type byteCounter struct { w io.Writer count int64}func countingWriter(w io.Writer) (io.Writer, *int64) { var bc = byteCounter{w, 0} // here why is &bc a "io.Writer" and not bc.w cause bc.count is int64 return &bc, &bc.count}func (bc *byteCounter) Write(p []byte) (n int, err error) { ncount, err := bc.w.Write(p) bc.count += int64(ncount) return}func main() { bc, count := countingWriter(os.Stdout) bc.Write([]byte("Hello World")) fmt.Println("\n", *count)}为什么是&bc“io.Writer”类型而不是bc.w我感到困惑,因为我看到 bc.count的是int64.
1 回答
动漫人物
TA贡献1815条经验 获得超10个赞
为什么是
&bc
“io.Writer”类型
因为您的类型通过具有正确签名的方法来byteCounter
满足接口。io.Writer
Write()
并不是
bc.w
bc.w
也是一个。_io.Writer
我很困惑,因为我看到
bc.count
的是int64
。
bc.count
在这里无关紧要。您的byteCounter
类型可以包含任何类型的任何数据。唯一与满足接口相关的事情是否具有必要的方法。
- 1 回答
- 0 关注
- 115 浏览
添加回答
举报
0/150
提交
取消