美文网首页
2020-03-20

2020-03-20

作者: anthonydan | 来源:发表于2020-03-20 10:50 被阅读0次

答案:People show b
People show a
这是Golang的组合模式,可以实现OOP的继承。 被组合的类型People所包含的方法虽然升级成了外部类型Teacher这个组合类型的方法(一定要是匿名字段),但它们的方法(ShowA())调用时接受者并没有发生变化。 此时People类型并不知道自己会被什么类型组合,当然也就无法调用方法时去使用未知的组合者Teacher类型的功能。

package main

import "fmt"

type People struct {}

type Teacher struct{
People
}

func (p *People) ShowB() {
fmt.Println("People show b")
p.ShowA()
}

func (p *People) ShowA() {
fmt.Println("People show a")
}

func (t *Teacher) ShowA(){
fmt.Println("Teacher show a")
}

func main() {
t := Teacher{}
t.ShowB()
}

相关文章

网友评论

      本文标题:2020-03-20

      本文链接:https://www.haomeiwen.com/subject/isndyhtx.html