对上一篇文章用到的匿名接口的深入理解:http://blog.csdn.net/uudou/article/details/52456133
对于 struct 内嵌 inteface 的使用,我是研究好半天才搞懂,这里记录下我疑问:
1. 如何更好的理解匿名接口
// 匿名接口可以被用作变量或者结构属性类型
type Man struct {
gender interface {
GetGender() string
}
}
上面Man类可以扩展成
type gender interface {
GetGender() string
}
type