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

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

為什么 Go 編譯器不能推斷結(jié)構(gòu)實(shí)現(xiàn)了接口

為什么 Go 編譯器不能推斷結(jié)構(gòu)實(shí)現(xiàn)了接口

Go
子衿沉夜 2022-10-17 10:03:55
運(yùn)行下面的代碼會(huì)導(dǎo)致編譯錯(cuò)誤:不能在返回參數(shù)中使用作者(類(lèi)型 []Person)作為類(lèi)型 []Namer為什么不能 Go 編譯它?type Namer interface {    Name() string}type Person struct {    name string}func (r Person) Name() string {    return r.name}func Authors() []Namer {    // One or the other is used - both are not good:    authors := make([]Person, 10)    var authors []Person    ...    return authors聲明authors為authors := make([]Namer, 10)orvar authors []Namer會(huì)很好,但我不明白為什么編譯器不能推斷Person是Namer.
查看完整描述

1 回答

?
喵喵時(shí)光機(jī)

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

因?yàn)?a[]Person 不是a []Namer。讓我們把你的例子更進(jìn)一步:


type Namer interface {

    Name() string

}


type Person struct {

    name string

}


func (r Person) Name() string {

    return r.name

}


type Thing struct {

    name string

}


func (t Thing) Name() string {

    return r.name

}


func Authors() []Namer {

    authors := make([]Person, 10)

    return authors

}


func main() {

    namers := Authors()

    // Great! This gives me a []Namer, according to the return type, I'll use it that way!

    thing := Thing{}

    namers := append(namers, thing)

    // This *should* work, because it's supposed to be a []Namer, and Thing is a Namer.

    // But you can't put a Thing in a []Person, because that's a concrete type.

}

如果代碼期望收到 a []Namer,那就是它必須得到的。不[]ConcreteTypeThatImplementsNamer- 它們不可互換。


查看完整回答
反對(duì) 回復(fù) 2022-10-17
  • 1 回答
  • 0 關(guān)注
  • 138 瀏覽
慕課專(zhuān)欄
更多

添加回答

舉報(bào)

0/150
提交
取消
微信客服

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

幫助反饋 APP下載

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

公眾號(hào)

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