美文网首页
go结构体3期:方法重写与就近原则

go结构体3期:方法重写与就近原则

作者: 没我找不到电子书 | 来源:发表于2018-07-15 21:17 被阅读0次
    package main
    
    import "fmt"
    
    type Person struct {
        name string //名字
        sex  byte   //性别, 字符类型
        age  int    //年龄
    }
    
    //Person类型,实现了一个方法
    func (tmp *Person) PrintInfo() {
        fmt.Printf("name=%s, sex=%c, age=%d\n", tmp.name, tmp.sex, tmp.age)
    }
    
    //有个学生,继承Person字段,成员和方法都继承了
    type Student struct {
        Person //匿名字段
        id     int
        addr   string
    }
    
    //Student也实现了一个方法,这个方法和Person方法同名,这种方法叫重写
    func (tmp *Student) PrintInfo() {
        fmt.Println("Student: tmp = ", tmp)
    }
    
    func main() {
        s := Student{Person{"mike", 'm', 18}, 666, "bj"}
        //就近原则:先找本作用域的方法,找不到再用继承的方法
        s.PrintInfo() //到底调用的是Person, 还是Student, 结论是Student
    
        //显式调用继承的方法
        s.Person.PrintInfo()
    }
    

    相关文章

      网友评论

          本文标题:go结构体3期:方法重写与就近原则

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