golang 继承

package main

import "fmt"

type Base struct {
    Name string
}

func (b *Base) SetName(name string) {
    b.Name = name
}

func (b *Base) GetName() string {
    return b.Name
}

// 组合,实现继承
type Child struct {
    base Base // 这里保存的是Base类型
}

// 重写GetName方法
func (c *Child) GetName() string {
    c.base.SetName("modify...")
    return c.base.GetName()
}

// 实现继承,但需要外部提供一个Base的实例
type Child2 struct {
    base *Base // 这里是指针
}

//
type Child3 struct {
    Base
}

type Child4 struct {
    *Base
}

func main() {
    c := new(Child)
    c.base.SetName("world")
    fmt.Println(c.GetName())

    c2 := new(Child2)
    c2.base = new(Base) // 因为Child2里面的Base是指针类型,所以必须提供一个Base的实例
    c2.base.SetName("ccc")
    fmt.Println(c2.base.GetName())

    c3 := new(Child3)
    c3.SetName("1111")
    fmt.Println(c3.GetName())

    c4 := new(Child4)
    c4.Base = new(Base)
    c4.SetName("2222")
    fmt.Println(c4.GetName())
}
    原文作者:杰克曼
    原文地址: https://segmentfault.com/a/1190000012710492
    本文转自网络文章,转载此文章仅为分享知识,如有侵权,请联系博主进行删除。
点赞