Go中匿名字段的方法继承与方法重写
Posted
tags:
篇首语:本文由小常识网(cha138.com)小编为大家整理,主要介绍了Go中匿名字段的方法继承与方法重写相关的知识,希望对你有一定的参考价值。
// code_019_struct_anonymous_field_method project main.go
package main
import (
"fmt"
)
type Person struct {
name string
sex byte
age int
}
func (p *Person) PrintInfo() {
fmt.Printf("Person:%s,%c,%d
", p.name, p.sex, p.age)
}
type Student struct {
Person
id int
addr string
}
//方法被重写,但是不能被重载;若未被重写,则继承匿名字段的方法
func (s *Student) PrintInfo() {
fmt.Printf("Student:%s,%c,%d
", s.name, s.sex, s.age)
}
func main() {
p := Person{"ck_god", ‘m‘, 18}
p.PrintInfo()
s := Student{Person{"god_girl", ‘f‘, 20}, 2, "sz"}
s.PrintInfo()
s.Person.PrintInfo()
}
运行结果如下:
Person:ck_god,m,18
Student:god_girl,f,20
Person:god_girl,f,20
以上是关于Go中匿名字段的方法继承与方法重写的主要内容,如果未能解决你的问题,请参考以下文章
[Golang]面向对象营养餐,一文管够(封装,继承,多态)