接口
嵌套类型
type user struct {
name string
email string
}
func (u *user) EchoHello() {
fmt.Println("hello ")
}
type admin struct {
user
level string
}
func TestPolymorphic(t *testing.T) {
ad := admin{
user: user{
name: "john",
email: "john@163.com",
},
level: "super",
}
ad.EchoHello()
}
// BizYamlData Biz层配置的yaml文件解析
type BizYamlData struct {
Basic `yaml:",inline"`
Methods []*BizYamlMethod `json:"methods" yaml:"methods"`
Entities []*Entity `json:"entities" yaml:"entities"`
}
公有or私有
- gowc,大写字母为公有,公有变量,函数可以被其他不同的包所引用;而私有的变量和函数只能在本包下使用,这样约定可以省略关键字;像Java需要声明
private
或public
来区分到底是公有还是私有