猿问

为什么 struct byteCounter 被视为“io.Writer”?

在这段代码中。


package main


import (

    "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.


小唯快跑啊
浏览 116回答 1
1回答

动漫人物

为什么是&bc“io.Writer”类型因为您的类型通过具有正确签名的方法来byteCounter满足接口。io.WriterWrite()并不是bc.wbc.w也是一个。_io.Writer我很困惑,因为我看到bc.count的是int64。bc.count在这里无关紧要。您的byteCounter类型可以包含任何类型的任何数据。唯一与满足接口相关的事情是否具有必要的方法。
随时随地看视频慕课网APP

相关分类

Go
我要回答