golang中的继承
package main
import "log"
type Person struct {
Name string
Age int
}
type Student struct {
Person
Stud
2023-02-15