为什么 Go 编译器不能推断结构实现了接口

运行下面的代码会导致编译错误:


不能在返回参数中使用作者(类型 []Person)作为类型 []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会很好,但我不明白为什么编译器不能推断Person是Namer.


子衿沉夜
浏览 113回答 1
1回答

喵喵时光机

因为 a[]Person 不是a []Namer。让我们把你的例子更进一步: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- 它们不可互换。
打开App,查看更多内容
随时随地看视频慕课网APP

相关分类

Go