![[Go] 子类 调用 父类 的 属性、方法 [Go] 子类 调用 父类 的 属性、方法](https://image.shishitao.com:8440/aHR0cHM6Ly9ia3FzaW1nLmlrYWZhbi5jb20vdXBsb2FkL2NoYXRncHQtcy5wbmc%2FIQ%3D%3D.png?!?w=700&webp=1)
package main import (
"fmt"
) type A struct {
Text string
Name string
} func (a *A) Say() {
fmt.Printf("A::Say():%s\n", a.Text)
} type B struct {
A
Name string
} func (b *B) Say() {
b.A.Say()
fmt.Printf("B::Say():%s\n", b.Text)
} func main() {
b := B{A{"hello, world", "张三"}, "李四"} b.Say()
fmt.Println("b的名字为:", b.Name) // 如果要显示 B 的 Name 值
fmt.Println("b的名字为:", b.A.Name)
}
输出:
A::Say():hello, world
B::Say():hello, world
b的名字为: 李四
b的名字为: 张三
相关文章: