标签:系统 [] 通过 存在 面向对象 参数传递 函数 interface 接口
type slice struct{
first *T
len int
cap int
}
type Map_K_V struct{
//...
}
type map[K]V struct{
impl *Map_K_V
}
type interface struct{
data *void
itab *Itab
}
标签:系统 [] 通过 存在 面向对象 参数传递 函数 interface 接口
原文地址:http://www.cnblogs.com/cjxltd/p/7125786.html