首页 动态 > 内容页

博学谷狂野大数据六期23年7月 学习笔记

时间 : 2023-08-24 18:10:05 来源:哔哩哔哩


(资料图片)

golang中的多态是通过interface类型实现的

type Person interface {  //接口Person规定了方法GetName    GetName()}type Student struct {    Name string    Age  int}func (this *Student) GetName() {    ()}type Teacher struct {    Name string    Age  int}func (this *Teacher) GetName() {    ()}

x