码迷,mamicode.com
首页 > 其他好文 > 详细

38_方法的重写

时间:2019-09-22 02:08:31      阅读:120      评论:0      收藏:0      [点我收藏+]

标签:eve   val   int   imp   package   pac   main   关键字   调用   

package main

import "fmt"

type Person struct {
	//和变量定义不同,不要写var关键字
	Id   int
	Name string
	Sex  byte
}
type Student struct {
	Person
	Hobby string
}

//改变接收者类型,可以实现方法重写
func (s Person) PrintValue() {
	fmt.Println("该方法receiver is person")

}
func (s Student) PrintValue() {
	fmt.Println("该方法receiver is student")

}

func main() {
	s1 := Student{Person{1, "steven", ‘m‘}, "running"}
	s1.PrintValue()        //就近原则
	s1.Person.PrintValue() //显示的调用上一层

}

38_方法的重写

标签:eve   val   int   imp   package   pac   main   关键字   调用   

原文地址:https://www.cnblogs.com/zhaopp/p/11565408.html

(0)
(0)
   
举报
评论 一句话评论(0
登录后才能评论!
© 2014 mamicode.com 版权所有  联系我们:gaon5@hotmail.com
迷上了代码!