分享
  1. 首页
  2. 文章

Go语言interface底层实现

掘金 · · 2399 次点击 · · 开始浏览
这是一个创建于 的文章,其中的信息可能已经有所发展或是发生改变。

Go的interface源码在Golang源码的runtime目录中。 Go在不同版本之间的interface结构可能会有所不同,但是,整体的结构是不会改变的,此文章用的Go版本是1.11。

Go的interface是由两种类型来实现的:ifaceeface。 其中,iface表示的是包含方法的interface,例如:

type Person interface {
	Print()
}
复制代码

eface代表的是不包含方法的interface,即

type Person interface {}
复制代码

或者

var person interface{} = xxxx实体
复制代码

eface

eface的具体结构是:

[画像:在这里插入图片描述]
一共有两个属性构成,一个是类型信息_type,一个是数据信息。 其中,_type可以认为是Go语言中所有类型的公共描述,Go语言中几乎所有的数据结构都可以抽象成_type,是所有类型的表现,可以说是万能类型, data是指向具体数据的指针。

type的具体代码为:

type _type struct {
	size uintptr 
	ptrdata uintptr // size of memory prefix holding all pointers
	hash uint32
	tflag tflag
	align uint8
	fieldalign uint8
	kind uint8
	alg *typeAlg
	// gcdata stores the GC type data for the garbage collector.
	// If the KindGCProg bit is set in kind, gcdata is a GC program.
	// Otherwise it is a ptrmask bitmap. See mbitmap.go for details.
	gcdata *byte
	str nameOff
	ptrToThis typeOff
}
复制代码

eface的整体结构是:

[画像:在这里插入图片描述]

对于没有方法的interface赋值后的内部结构是怎样的呢? 可以先看段代码:

import (
	"fmt"
	"strconv"
)
type Binary uint64
func main() {
	b := Binary(200)
	any := (interface{})(b)
	fmt.Println(any)
}
复制代码

输出200,赋值后的结构图是这样的:

[画像:在这里插入图片描述]
对于将不同类型转化成type万能结构的方法,是运行时的convT2E方法,在runtime包中。 以上,是对于没有方法的接口说明。 对于包含方法的函数,用到的是另外的一种结构,叫iface

iface

所有包含方法的接口,都会使用iface结构。包含方法的接口就是一下这种最常见,最普通的接口:

type Person interface {
	Print()
}
复制代码

iface的源代码是:

type iface struct {
	tab *itab
	data unsafe.Pointer
}
复制代码

iface的具体结构是:

[画像:在这里插入图片描述]

itabiface不同于eface比较关键的数据结构。其可包含两部分:一部分是确定唯一的包含方法的interface的具体结构类型,一部分是指向具体方法集的指针。 具体结构为:

[画像:在这里插入图片描述]
属性 itab的源代码是:
type itab struct {
	inter *interfacetype //此属性用于定位到具体interface
	_type *_type //此属性用于定位到具体interface
	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.
}
复制代码

属性interfacetype类似于_type,其作用就是interface的公共描述,类似的还有maptypearraytypechantype...其都是各个结构的公共描述,可以理解为一种外在的表现信息。interfacetype源码如下:

type interfacetype struct {
	typ _type
	pkgpath name
	mhdr []imethod
}
type imethod struct {
	name nameOff
	ityp typeOff
}
复制代码

iface的整体结构为:

[画像:在这里插入图片描述]

对于含有方法的interface赋值后的内部结构是怎样的呢? 一下代码运行后

package main
import (
	"fmt"
	"strconv"
)
type Binary uint64
func (i Binary) String() string {
	return strconv.FormatUint(i.Get(), 10)
}
func (i Binary) Get() uint64 {
	return uint64(i)
}
func main() {
	b := Binary(200)
	any := fmt.Stringer(b)
	fmt.Println(any)
}
复制代码

首先,要知道代码运行结果为:200。 其次,了解到fmt.Stringer是一个包含String方法的接口。

type Stringer interface {
	String() string
}
复制代码

最后,赋值后接口Stringer的内部结构为:

[画像:在这里插入图片描述]

对于将不同类型转化成itable中type(Binary)的方法,是运行时的convT2I方法,在runtime包中。

参考文献: 《Go in action》 research.swtch.com/interfaces juejin.im/entry/5a7d0...


有疑问加站长微信联系(非本文作者)

本文来自:掘金

感谢作者:掘金

查看原文:Go语言interface底层实现

入群交流(和以上内容无关):加入Go大咖交流群,或添加微信:liuxiaoyan-s 备注:入群;或加QQ群:692541889

关注微信
2399 次点击
被以下专栏收入,发现更多相似内容
添加一条新回复 (您需要 后才能回复 没有账号 ?)
  • 请尽量让自己的回复能够对别人有帮助
  • 支持 Markdown 格式, **粗体**、~~删除线~~、`单行代码`
  • 支持 @ 本站用户;支持表情(输入 : 提示),见 Emoji cheat sheet
  • 图片支持拖拽、截图粘贴等方式上传

用户登录

没有账号?注册
(追記) (追記ここまで)

今日阅读排行

    加载中
(追記) (追記ここまで)

一周阅读排行

    加载中

关注我

  • 扫码关注领全套学习资料 关注微信公众号
  • 加入 QQ 群:
    • 192706294(已满)
    • 731990104(已满)
    • 798786647(已满)
    • 729884609(已满)
    • 977810755(已满)
    • 815126783(已满)
    • 812540095(已满)
    • 1006366459(已满)
    • 692541889

  • 关注微信公众号
  • 加入微信群:liuxiaoyan-s,备注入群
  • 也欢迎加入知识星球 Go粉丝们(免费)

给该专栏投稿 写篇新文章

每篇文章有总共有 5 次投稿机会

收入到我管理的专栏 新建专栏