第七色在线视频,2021少妇久久久久久久久久,亚洲欧洲精品成人久久av18,亚洲国产精品特色大片观看完整版,孙宇晨将参加特朗普的晚宴

為了賬號(hào)安全,請(qǐng)及時(shí)綁定郵箱和手機(jī)立即綁定
已解決430363個(gè)問題,去搜搜看,總會(huì)有你想問的

對(duì)結(jié)構(gòu)字段進(jìn)行持續(xù)更改*并*滿足 Writer 接口?

對(duì)結(jié)構(gòu)字段進(jìn)行持續(xù)更改*并*滿足 Writer 接口?

Go
慕神8447489 2023-04-04 14:12:58
為了實(shí)際更改struct方法中的字段,您需要一個(gè)指針類型的接收器。我明白那個(gè)。為什么我不能滿足io.Writer具有指針接收器的接口,以便我可以更改結(jié)構(gòu)字段?有沒有慣用的方法來做到這一點(diǎn)?// CountWriter is a type representing a writer that also countstype CountWriter struct {    Count      int    Output     io.Writer}func (cw *CountWriter) Write(p []byte) (int, error) {    cw.Count++    return cw.Output.Write(p)}func takeAWriter(w io.Writer) {    w.Write([]byte("Testing"))}func main() {    boo := CountWriter{0, os.Stdout}    boo.Write([]byte("Hello\n"))    fmt.Printf("Count is incremented: %d", boo.Count)    takeAWriter(boo)}該代碼產(chǎn)生此錯(cuò)誤:prog.go:27:13: cannot use boo (type CountWriter) as type io.Writer in argument to takeAWriter:    CountWriter does not implement io.Writer (Write method has pointer receiver)看來您既可以滿足Writer界面要求,也可以對(duì)實(shí)際的struct. 如果我將 Write 方法更改為值接收器 ( func (cw CountWriter) Write...),我可以避免錯(cuò)誤,但值不會(huì)增加。:(https://play.golang.org/p/pEUwwTj0zrb
查看完整描述

1 回答

?
qq_花開花謝_0

TA貢獻(xiàn)1835條經(jīng)驗(yàn) 獲得超7個(gè)贊

boo不實(shí)現(xiàn)接口,因?yàn)?Write takes*CountWriter而不是 aCountWriter
但是,&booWrite 會(huì)接受,所以你必須傳遞它。



查看完整回答
反對(duì) 回復(fù) 2023-04-04
  • 1 回答
  • 0 關(guān)注
  • 123 瀏覽

添加回答

舉報(bào)

0/150
提交
取消
微信客服

購課補(bǔ)貼
聯(lián)系客服咨詢優(yōu)惠詳情

幫助反饋 APP下載

慕課網(wǎng)APP
您的移動(dòng)學(xué)習(xí)伙伴

公眾號(hào)

掃描二維碼
關(guān)注慕課網(wǎng)微信公眾號(hào)