欢迎您访问程序员文章站本站旨在为大家提供分享程序员计算机编程知识!
您现在的位置是: 首页  >  IT编程

[Go] Golang中的面向对象

程序员文章站 2022-07-02 12:33:45
struct interface 就可以实现面向对象中的继承,封装,多态 继承的演示:Tsh类型继承People类型,并且使用People类型的方法 多态的演示Tsh类型实现了接口Student,实现了接口定义的方法 完整代码: ......

struct interface 就可以实现面向对象中的继承,封装,多态

继承的演示:
tsh类型继承people类型,并且使用people类型的方法

多态的演示
tsh类型实现了接口student,实现了接口定义的方法

完整代码:

package main

import "fmt"

//父类型
type people struct {
}

func (p *people) echo() {
    fmt.println("taoshihan")
}

//接口
type student interface {
    do()
}

//子类型,实现了接口,继承了父类型
type tsh struct {
    people
}

func (t tsh) do() {
    fmt.println("taoshihan do")
}
func main() {
    //继承的演示
    t := tsh{people{}}
    t.echo()
    //多态的演示
    var student student
    student = t
    student.do()
}