Golang 继承 Jackey Golang 2020-03-08 4,031 次浏览 Golang, 继承 package main import "fmt" type Student struct { Name string Age int Score float64 } // 将公有的方法绑定到Student 结构体 func (s *Student) GetInfo() { fmt.Printf("学生姓名=%v, 年龄=%v,成绩=%v \...