// 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\n", p.name, p.sex, p.age)
}
type Student struct {
Person
id int
addr string
}
//方法被重寫,但是不能被重載;若未被重寫,則繼承匿名字段的方法
func (s *Student) PrintInfo() {
fmt.Printf("Student:%s,%c,%d\n", 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()
}
運(yùn)行結(jié)果如下:
成都創(chuàng)新互聯(lián)公司專注為客戶提供全方位的互聯(lián)網(wǎng)綜合服務(wù),包含不限于網(wǎng)站設(shè)計(jì)制作、成都做網(wǎng)站、精河網(wǎng)絡(luò)推廣、微信小程序開發(fā)、精河網(wǎng)絡(luò)營(yíng)銷、精河企業(yè)策劃、精河品牌公關(guān)、搜索引擎seo、人物專訪、企業(yè)宣傳片、企業(yè)代運(yùn)營(yíng)等,從售前售中售后,我們都將竭誠(chéng)為您服務(wù),您的肯定,是我們最大的嘉獎(jiǎng);成都創(chuàng)新互聯(lián)公司為所有大學(xué)生創(chuàng)業(yè)者提供精河建站搭建服務(wù),24小時(shí)服務(wù)熱線:028-86922220,官方網(wǎng)址:www.cdcxhl.com
Person:ck_god,m,18
Student:god_girl,f,20
Person:god_girl,f,20