为了账号安全,请及时绑定邮箱和手机立即绑定

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

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

Go
长风秋雁 2023-07-26 15:37:56
Go 不支持多态性。如果要在泛型类型的保护下传递特定类型,则它无法在 Go 中工作。以下代码引发错误。在 Go 中实现相同功能的最佳方法是什么?package mainimport ("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)}
查看完整描述

1 回答

?
慕侠2389804

TA贡献1719条经验 获得超6个赞

只是因为在本例中,Child 类型是由 Parent 组成的。并不意味着它就是那个东西。这是两种不同的类型,因此不能以这种方式互换。

现在,如果您有一个接口 Parent 并且您的子对象满足该接口,那么我们正在谈论完全不同的事情。

编辑1

例子

https://play.golang.org/p/i6fQBoL2Uk7

编辑2

package main


import "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)


}


查看完整回答
反对 回复 2023-07-26
  • 1 回答
  • 0 关注
  • 101 浏览
慕课专栏
更多

添加回答

举报

0/150
提交
取消
意见反馈 帮助中心 APP下载
官方微信