亲宝软件园·资讯

展开

Go语言使用组合的思想实现继承

陈明勇 人气:0

前言

类型嵌入

组合的思想,在 Go 语言里的体现就是类型嵌入。类型嵌入,指的是一个类型的定义里嵌入了其他类型。类型嵌入包含两种,一种是结构体类型嵌入,另一种是接口类型嵌入。

结构体类型嵌入

import "fmt"

type Person struct {
    Name string
    Age  int
}

func (p Person) Introduce() {
    fmt.Printf("大家好,我叫%s,我今年%d岁了。\n", p.Name, p.Age)
}

type Student struct {
    Person
    School string
}

func (s Student) GoToTheClass() {
    fmt.Println("去上课...")
}

func main() {
    student := Student{}
    student.Name = "小明"
    student.Age = 18
    student.School = "太阳系大学"

    // 执行 Person 类型的 Introduce 方法
    student.Introduce()
    // 执行自身的 GoToTheClass 方法
    student.GoToTheClass()
}

执行结果:

大家好,我叫小明,我今年18岁了。
去上课...

接口类型嵌入

type Coder interface {
    Code()
}

type Tester interface {
    Test()
}

type TesterCoder interface {
    Tester
    Coder
}

小结

本文介绍了 Go 语言中的 “继承”,它是通过组合的思想去模拟实现面向对象中的继承。然后介绍了什么是类型嵌入以及类型嵌入的两种类型,嵌入的类型包含的字段和方法以隐式存在。

“继承”的实现,能够提高代码的复用性,代码的维护性和扩展性也得以提高。

加载全部内容

相关教程
猜你喜欢
用户评论