在线时间:8:00-16:00
迪恩网络APP
随时随地掌握行业动态
扫描二维码
关注迪恩网络微信公众号
golang的interface接口,表示一组方法集合;实现方法的实例可以存储在接口类型的变量;有一种特殊的接口类型就是空接口类型interface{},对于带有方法的接口类型和不带任何方法的 空interface{}的底层实现是eface type eface struct { // 16 bytes _type *_type //指向底层类型 data unsafe.Pointer //指向底层数据(具体值) } 带有方法集合的接口底层实现iface type iface struct { // 16 bytes tab *itab //指向下边的结构,出来底层类型外 还包含其他信息 data unsafe.Pointer //指向底层数据(具体值) }
type itab struct { // 32 bytes
inter *interfacetype //接口类型描述
_type *_type //底层类型
hash uint32 // copy of _type.hash. Used for type switches. 用于类型转换,转换成具体类型需要判断目标类型和接口的底层类型是否一致
_ [4]byte
fun [1]uintptr // variable sized. fun[0]==0 means _type does not implement inter. //是一个指针数组,每个指针指向具体类型
|
请发表评论