golang数组内存分配原理
来源:脚本之家
2023-01-10 09:51:57
0浏览
收藏
本篇文章给大家分享《golang数组内存分配原理》,覆盖了Golang的常见基础知识,其实一个语言的全部知识点一篇文章是不可能说完的,但希望通过这些问题,让读者对自己的掌握程度有一定的认识(B 数),从而弥补自己的不足,更好的掌握它。
编译时数组类型解析
ArrayType
数组是内存中一片连续的区域,在声明时需要指定长度,数组的声明有如下三种方式,[...]
的方式在编译时会自动推断长度。
var arr1 [3]int var arr2 = [3]int{1,2,3} arr3 := [...]int{1,2,3}
在词法及语法解析时,上述三种方式声明的数组会被解析为ArrayType
, 当遇到[...]
的声明时,其长度会被标记为nil
,将在后续阶段进行自动推断。
// go/src/cmd/compile/internal/syntax/parser.go func (p *parser) typeOrNil() Expr { ... pos := p.pos() switch p.tok { ... case _Lbrack: // '[' oexpr ']' ntype // '[' _DotDotDot ']' ntype p.next() if p.got(_Rbrack) { return p.sliceType(pos) } return p.arrayType(pos, nil) ... } // "[" has already been consumed, and pos is its position. // If len != nil it is the already consumed array length. func (p *parser) arrayType(pos Pos, len Expr) Expr { ... if len == nil && !p.got(_DotDotDot) { p.xnest++ len = p.expr() p.xnest-- } ... p.want(_Rbrack) t := new(ArrayType) t.pos = pos t.Len = len t.Elem = p.type_() return t }
// go/src/cmd/compile/internal/syntax/nodes.go type ( ... // [Len]Elem ArrayType struct { Len Expr // nil means Len is ... Elem Expr expr } ... )
types2.Array
在对生成的表达式进行类型检查时,如果是ArrayType
类型,且其长度Len
为nil
时,会初始化一个types2.Array
并将其长度标记为-1
,然后通过check.indexedElts(e.ElemList, utyp.elem, utyp.len)
返回数组长度n
并赋值给Len
,完成自动推断。
// go/src/cmd/compile/internal/types2/array.go // An Array represents an array type. type Array struct { len int64 elem Type }
// go/src/cmd/compile/internal/types2/expr.go // exprInternal contains the core of type checking of expressions. // Must only be called by rawExpr. func (check *Checker) exprInternal(x *operand, e syntax.Expr, hint Type) exprKind { ... switch e := e.(type) { ... case *syntax.CompositeLit: var typ, base Type switch { case e.Type != nil: // composite literal type present - use it // [...]T array types may only appear with composite literals. // Check for them here so we don't have to handle ... in general. if atyp, _ := e.Type.(*syntax.ArrayType); atyp != nil && atyp.Len == nil { // We have an "open" [...]T array type. // Create a new ArrayType with unknown length (-1) // and finish setting it up after analyzing the literal. typ = &Array{len: -1, elem: check.varType(atyp.Elem)} base = typ break } typ = check.typ(e.Type) base = typ ... } switch utyp := coreType(base).(type) { ... case *Array: if utyp.elem == nil { check.error(e, "illegal cycle in type declaration") goto Error } n := check.indexedElts(e.ElemList, utyp.elem, utyp.len) // If we have an array of unknown length (usually [...]T arrays, but also // arrays [n]T where n is invalid) set the length now that we know it and // record the type for the array (usually done by check.typ which is not // called for [...]T). We handle [...]T arrays and arrays with invalid // length the same here because it makes sense to "guess" the length for // the latter if we have a composite literal; e.g. for [n]int{1, 2, 3} // where n is invalid for some reason, it seems fair to assume it should // be 3 (see also Checked.arrayLength and issue #27346). if utyp.len <h3>types.Array</h3> <p>在生成中间结果时,<code>types2.Array</code>最终会通过<code>types.NewArray()</code>转换成<code>types.Array</code>类型。</p> <pre class="brush:go;">// go/src/cmd/compile/internal/noder/types.go // typ0 converts a types2.Type to a types.Type, but doesn't do the caching check // at the top level. func (g *irgen) typ0(typ types2.Type) *types.Type { switch typ := typ.(type) { ... case *types2.Array: return types.NewArray(g.typ1(typ.Elem()), typ.Len()) ... }
// go/src/cmd/compile/internal/types/type.go // Array contains Type fields specific to array types. type Array struct { Elem *Type // element type Bound int64 // number of elements; <h2>编译时数组字面量初始化</h2> <p>数组类型解析可以得到数组元素的类型<code>Elem</code>以及数组长度<code>Bound</code>,而数组字面量的初始化是在编译时类型检查阶段完成的,通过函数<code>tcComplit -> typecheckarraylit</code>循环字面量分别进行赋值。</p> <pre class="brush:go;">// go/src/cmd/compile/internal/typecheck/expr.go func tcCompLit(n *ir.CompLitExpr) (res ir.Node) { ... t := n.Type() base.AssertfAt(t != nil, n.Pos(), "missing type in composite literal") switch t.Kind() { ... case types.TARRAY: typecheckarraylit(t.Elem(), t.NumElem(), n.List, "array literal") n.SetOp(ir.OARRAYLIT) ... return n }
// go/src/cmd/compile/internal/typecheck/typecheck.go // typecheckarraylit type-checks a sequence of slice/array literal elements. func typecheckarraylit(elemType *types.Type, bound int64, elts []ir.Node, ctx string) int64 { ... for i, elt := range elts { ir.SetPos(elt) r := elts[i] ... r = Expr(r) r = AssignConv(r, elemType, ctx) ... }
编译时数组索引越界检查
在对数组进行索引访问时,如果访问越界在编译时就无法通过检查。
例如:
arr := [...]string{"s1", "s2", "s3"} e3 := arr[3] // invalid array index 3 (out of bounds for 3-element array)
数组在类型检查阶段会对访问数组的索引进行验证:
// go/src/cmd/compile/internal/typecheck/typecheck.go func typecheck1(n ir.Node, top int) ir.Node { ... switch n.Op() { ... case ir.OINDEX: n := n.(*ir.IndexExpr) return tcIndex(n) ... } } // go/src/cmd/compile/internal/typecheck/expr.go func tcIndex(n *ir.IndexExpr) ir.Node { ... l := n.X n.Index = Expr(n.Index) r := n.Index t := l.Type() ... switch t.Kind() { ... case types.TSTRING, types.TARRAY, types.TSLICE: n.Index = indexlit(n.Index) if t.IsString() { n.SetType(types.ByteType) } else { n.SetType(t.Elem()) } why := "string" if t.IsArray() { why = "array" } else if t.IsSlice() { why = "slice" } if n.Index.Type() != nil && !n.Index.Type().IsInteger() { base.Errorf("non-integer %s index %v", why, n.Index) return n } if !n.Bounded() && ir.IsConst(n.Index, constant.Int) { x := n.Index.Val() if constant.Sign(x) <h2>运行时数组内存分配</h2> <p>数组是内存区域一块连续的存储空间。在运行时会通过<code>mallocgc</code>给数组分配具体的存储空间。<code>newarray</code>中如果数组元素刚好只有一个,则空间大小为元素类型的大小<code>typ.size</code>, 如果有多个元素则内存大小为<code>n*typ.size</code>。但这并不是实际分配的内存大小,实际分配多少内存,取决于<code>mallocgc</code>,涉及到<code>golang</code>的内存分配原理。但可以看到如果待分配的对象不超过<code>32kb</code>,<code>mallocgc</code>会直接将其分配在缓存空间中,如果大于<code>32kb</code>则直接从堆区分配内存空间。</p> <pre class="brush:go;">// go/src/runtime/malloc.go // newarray allocates an array of n elements of type typ. func newarray(typ *_type, n int) unsafe.Pointer { if n == 1 { return mallocgc(typ.size, typ, true) } mem, overflow := math.MulUintptr(typ.size, uintptr(n)) if overflow || mem > maxAlloc || n 32 kB) are allocated straight from the heap. func mallocgc(size uintptr, typ *_type, needzero bool) unsafe.Pointer { ... }
总结
数组在编译阶段最终被解析为types.Array
类型,包含元素类型Elem
和数组长度Bound
type Array struct { Elem *Type // element type Bound int64 // number of elements;
- 如果数组长度未指定,例如使用了语法糖
[...]
,则会在表达式类型检查时计算出数组长度。 - 数组字面量初始化以及索引越界检查都是在编译时类型检查阶段完成的。
- 在运行时通过
newarray()
函数对数组内存进行分配,如果数组大小超过32kb
则会直接分配到堆区内存。
今天关于《golang数组内存分配原理》的内容介绍就到此结束,如果有什么疑问或者建议,可以在golang学习网公众号下多多回复交流;文中若有不正之处,也希望回复留言以告知!
版本声明
本文转载于:脚本之家 如有侵犯,请联系study_golang@163.com删除

- 上一篇
- golang切片原理详细解析

- 下一篇
- golang协程与线程区别简要介绍
评论列表
-
- 谦让的月饼
- 这篇文章真是及时雨啊,太细致了,太给力了,码住,关注作者了!希望作者能多写Golang相关的文章。
- 2023-07-02 14:06:55
-
- 快乐的萝莉
- 很棒,一直没懂这个问题,但其实工作中常常有遇到...不过今天到这,看完之后很有帮助,总算是懂了,感谢楼主分享技术文章!
- 2023-06-09 10:30:15
-
- 坦率的黄豆
- 细节满满,已收藏,感谢作者大大的这篇文章内容,我会继续支持!
- 2023-03-26 13:54:56
查看更多
最新文章
-
- Golang · Go教程 | 10分钟前 | GoModules go.mod 模块路径 internal目录 相对路径导入
- Golang本地模块引用方法及路径导入技巧
- 152浏览 收藏
-
- Golang · Go教程 | 12分钟前 |
- Go语言Web开发:包结构与逻辑解析
- 156浏览 收藏
-
- Golang · Go教程 | 16分钟前 |
- Golang建造者模式解析与实现教程
- 365浏览 收藏
-
- Golang · Go教程 | 24分钟前 |
- GolangHTTP优化:Keep-Alive与连接复用设置
- 307浏览 收藏
-
- Golang · Go教程 | 27分钟前 |
- Golang微服务监控:指标采集与可视化方案
- 395浏览 收藏
-
- Golang · Go教程 | 45分钟前 | golang docker 镜像 容器化 Dockerfile
- Golang容器化指南:Docker实战教程
- 195浏览 收藏
-
- Golang · Go教程 | 53分钟前 |
- golist-mall命令可查看模块依赖关系及版本信息。
- 252浏览 收藏
-
- Golang · Go教程 | 1小时前 |
- Go语言闭包循环变量陷阱详解
- 181浏览 收藏
-
- Golang · Go教程 | 1小时前 |
- 不用信号直接结束Goroutine的3大原因
- 457浏览 收藏
-
- Golang · Go教程 | 1小时前 |
- Golang指针支持哪些运算?对比C语言差异解析
- 106浏览 收藏
查看更多
课程推荐
-
- 前端进阶之JavaScript设计模式
- 设计模式是开发人员在软件开发过程中面临一般问题时的解决方案,代表了最佳的实践。本课程的主打内容包括JS常见设计模式以及具体应用场景,打造一站式知识长龙服务,适合有JS基础的同学学习。
- 543次学习
-
- GO语言核心编程课程
- 本课程采用真实案例,全面具体可落地,从理论到实践,一步一步将GO核心编程技术、编程思想、底层实现融会贯通,使学习者贴近时代脉搏,做IT互联网时代的弄潮儿。
- 512次学习
-
- 简单聊聊mysql8与网络通信
- 如有问题加微信:Le-studyg;在课程中,我们将首先介绍MySQL8的新特性,包括性能优化、安全增强、新数据类型等,帮助学生快速熟悉MySQL8的最新功能。接着,我们将深入解析MySQL的网络通信机制,包括协议、连接管理、数据传输等,让
- 499次学习
-
- JavaScript正则表达式基础与实战
- 在任何一门编程语言中,正则表达式,都是一项重要的知识,它提供了高效的字符串匹配与捕获机制,可以极大的简化程序设计。
- 487次学习
-
- 从零制作响应式网站—Grid布局
- 本系列教程将展示从零制作一个假想的网络科技公司官网,分为导航,轮播,关于我们,成功案例,服务流程,团队介绍,数据部分,公司动态,底部信息等内容区块。网站整体采用CSSGrid布局,支持响应式,有流畅过渡和展现动画。
- 484次学习
查看更多
AI推荐
-
- 千音漫语
- 千音漫语,北京熠声科技倾力打造的智能声音创作助手,提供AI配音、音视频翻译、语音识别、声音克隆等强大功能,助力有声书制作、视频创作、教育培训等领域,官网:https://qianyin123.com
- 879次使用
-
- MiniWork
- MiniWork是一款智能高效的AI工具平台,专为提升工作与学习效率而设计。整合文本处理、图像生成、营销策划及运营管理等多元AI工具,提供精准智能解决方案,让复杂工作简单高效。
- 835次使用
-
- NoCode
- NoCode (nocode.cn)是领先的无代码开发平台,通过拖放、AI对话等简单操作,助您快速创建各类应用、网站与管理系统。无需编程知识,轻松实现个人生活、商业经营、企业管理多场景需求,大幅降低开发门槛,高效低成本。
- 867次使用
-
- 达医智影
- 达医智影,阿里巴巴达摩院医疗AI创新力作。全球率先利用平扫CT实现“一扫多筛”,仅一次CT扫描即可高效识别多种癌症、急症及慢病,为疾病早期发现提供智能、精准的AI影像早筛解决方案。
- 885次使用
-
- 智慧芽Eureka
- 智慧芽Eureka,专为技术创新打造的AI Agent平台。深度理解专利、研发、生物医药、材料、科创等复杂场景,通过专家级AI Agent精准执行任务,智能化工作流解放70%生产力,让您专注核心创新。
- 862次使用
查看更多
相关文章
-
- Goreflect反射原理示例详解
- 2022-12-22 174浏览
-
- 一文带你搞懂Golang结构体内存布局
- 2022-12-22 125浏览
-
- 浅析Golang中的内存逃逸
- 2022-12-22 344浏览
-
- 一文搞懂Golang中的内存逃逸
- 2022-12-31 378浏览
-
- go熔断原理分析与源码解读
- 2022-12-30 442浏览