Go中子类型如何被超类型引用

Go 不支持多态性。如果要在泛型类型的保护下传递特定类型,则它无法在 Go 中工作。以下代码引发错误。在 Go 中实现相同功能的最佳方法是什么?


package main


import (

"fmt"

)


type parent struct {

    parentID string

}


type child1 struct {

    parent

    child1ID string

}


type child2 struct {

    parent

    child2ID string

}


type childCollection struct {

    collection []parent

}


func (c *childCollection) appendChild(p parent) {

    c.collection = append(c.collection, p)

}


func main() {


    c1 := new(child1)

    c2 := new(child2)


    c := new(childCollection)

    c.appendChild(c1)

    c.appendChild(c2)


}


长风秋雁
浏览 107回答 1
1回答

慕侠2389804

只是因为在本例中,Child 类型是由 Parent 组成的。并不意味着它就是那个东西。这是两种不同的类型,因此不能以这种方式互换。现在,如果您有一个接口 Parent 并且您的子对象满足该接口,那么我们正在谈论完全不同的事情。编辑1例子https://play.golang.org/p/i6fQBoL2Uk7编辑2package mainimport "fmt"type parent interface {    getParentId() (string)}type child1 struct {    child1ID string}func (c child1) getParentId() (string) {    return c.child1ID}type child2 struct {    child2ID string}func (c child2) getParentId() (string) {    return c.child2ID}type childCollection struct {    collection []parent}func (c *childCollection) appendChild(p parent) {    c.collection = append(c.collection, p)}func main() {    c1 := child1{"1"}    c2 := child2{"2"}    c := new(childCollection)    c.appendChild(c1)    c.appendChild(c2)    fmt.Println(c)}
打开App,查看更多内容
随时随地看视频慕课网APP

相关分类

Go