-3
type (
Parent struct {
name string
surname string
}
Child struct {
*Parent
sport String
}
)
...
func (p *Parent) GetSport() string {
return ((*Child)(p)).sport // does not work
}
如何轉換*Parent
到*Child
?
所以你期望轉換'sport'屬性後會出現? –
是的,我知道'Parent'也是一個'Child',我想要施放它。 – j3d
確保你知道如何使用搜索https://stackoverflow.com/questions/37416188/convert-struct-to-struct-in-golang –