Go语言map和slice的内存管理

1. 前言

  Go语言传参既支持传值,也支持传引用。基础类型的传递比较清晰,本文记录下传递map和slice的原理。

2. 初始化和赋值

2.1 使用方法

  map和slice类型都是通过make方法和new方法来初始化。使用make初始化时,会同时分配空间,使用new初始化时,不会分配空间,指向的是一个nil。
  make方法的说明:map是不需要传入长度length的,slice可以接受两个长度参数,初始化的长度和容量。

// The make built-in function allocates and initializes an object of type
// slice, map, or chan (only). Like new, the first argument is a type, not a
// value. Unlike new, make's return type is the same as the type of its
// argument, not a pointer to it. The specification of the result depends on
// the type:
//  Slice: The size specifies the length. The capacity of the slice is
//  equal to its length. A second integer argument may be provided to
//  specify a different capacity; it must be no smaller than the
//  length. For example, make([]int, 0, 10) allocates an underlying array
//  of size 10 and returns a slice of length 0 and capacity 10 that is
//  backed by this underlying array.
//  Map: An empty map is allocated with enough space to hold the
//  specified number of elements. The size may be omitted, in which case
//  a small starting size is allocated.
//  Channel: The channel's buffer is initialized with the specified
//  buffer capacity. If zero, or the size is omitted, the channel is
//  unbuffered.
func make(t Type, size ...IntegerType) Type

  new出来的map不能赋值:

package main

import "fmt"

func main() {
    mapValue1 := make(map[int64]int64)
    mapValue2 := new(map[int64]int64)

    mapValue1[1] = 1
    (*mapValue2)[2] = 2

    fmt.Println(mapValue1)
    fmt.Println(*mapValue2)
}

  运行时会报错:panic: assignment to entry in nil map
  new出来的slice可以赋值(append)操作:

package main

import "fmt"

func main() {
    sliceValue1 := make([]int64, 0)
    sliceValue2 := new([]int64)

    sliceValue1 = append(sliceValue1, 100)
    *sliceValue2 = append(*sliceValue2, 200)

    fmt.Println(sliceValue1)
    fmt.Println(*sliceValue2)
}

  可以打印出信息。

2.2 内存分配

  map初始化就是返回一个hmap的结构体地址(可以理解为一个指针,指向了这个分配的结构体),具体的字段如下,任何语言的数组(php)或者map(java)里面都涉及到复杂的hash,就不在此详述。make时就会返回一个hmap结构体指针。
  map赋值时,需要先根据key找到那个对应的地址,然后对这个地址赋上对应的值。

// map的结构体
// A header for a Go map.
type hmap struct {
    // Note: the format of the hmap is also encoded in cmd/compile/internal/gc/reflect.go.
    // Make sure this stays in sync with the compiler's definition.
    count     int // # live cells == size of map.  Must be first (used by len() builtin)
    flags     uint8
    B         uint8  // log_2 of # of buckets (can hold up to loadFactor * 2^B items)
    noverflow uint16 // approximate number of overflow buckets; see incrnoverflow for details
    hash0     uint32 // hash seed

    buckets    unsafe.Pointer // array of 2^B Buckets. may be nil if count==0.
    oldbuckets unsafe.Pointer // previous bucket array of half the size, non-nil only when growing
    nevacuate  uintptr        // progress counter for evacuation (buckets less than this have been evacuated)

    extra *mapextra // optional fields
}

// make方法
func makemap_small() *hmap {
    h := new(hmap)
    h.hash0 = fastrand()
    return h
}

// 赋值方法
func mapassign_fast64(t *maptype, h *hmap, key uint64) unsafe.Pointer {
}

  slice初始化时会分配3*8=24bytes,分别保存着array,len,cap。array等于heap区返回的地址,在append时如果cap不够了,会自动增加cap。进行整个内存的copy,看起来效率会很低。

// slice结构体
type slice struct {
    array unsafe.Pointer
    len   int
    cap   int
}

// 分配
func makeslice(et *_type, len, cap int) unsafe.Pointer {}

// 扩大slice的cap
func growslice(et *_type, old slice, cap int) slice {}

3. 参数传递

  传递一个map变量时,实际上是传递了上面提到的分配hmap结构体的地址,可以理解为传递了引用。通过打印结果也可以反应这个机制。

package main

import "fmt"

func main() {
    mapValue1 := make(map[int64]int64)
    mapValue1[1] = 2

    mapValue2 := mapValue1
    mapValue2[3] = 4

    fmt.Println(mapValue1)
    fmt.Println(mapValue2)
}

// 打印信息
map[1:1 2:2]
map[1:1 2:2]

  传递一个slice变量时,实际上是复制了24bytes,通过汇编代码和打印信息,都可以验证。

package main

import "fmt"

func main() {
    sliceValue1 := make([]int64, 0, 10)
    sliceValue1 = append(sliceValue1, 100)

    sliceValue2 := sliceValue1
    sliceValue2 = append(sliceValue2, 200)

    fmt.Println(sliceValue1)
    fmt.Println(sliceValue2)
}

// 打印信息
[100]
[100 200]

// 汇编代码
  main.go:6     0x1099596       48890424        MOVQ AX, 0(SP)
  main.go:6     0x109959a       48c744240800000000  MOVQ $0x0, 0x8(SP)
  main.go:6     0x10995a3       48c74424100a000000  MOVQ $0xa, 0x10(SP)
  main.go:6     0x10995ac       e88f36faff      CALL runtime.makeslice(SB)
  main.go:6     0x10995b1       488b442418      MOVQ 0x18(SP), AX
  main.go:6     0x10995b6       4889442450      MOVQ AX, 0x50(SP)
  main.go:6     0x10995bb       48c744245800000000  MOVQ $0x0, 0x58(SP)
  main.go:6     0x10995c4       48c74424600a000000  MOVQ $0xa, 0x60(SP)
  main.go:7     0x10995cd       eb00            JMP 0x10995cf
  main.go:7     0x10995cf       48c70064000000      MOVQ $0x64, 0(AX)
  main.go:7     0x10995d6       4889442450      MOVQ AX, 0x50(SP)
  main.go:7     0x10995db       48c744245801000000  MOVQ $0x1, 0x58(SP)
  main.go:7     0x10995e4       48c74424600a000000  MOVQ $0xa, 0x60(SP)

  一个有趣的例子,可以加深slice传递的理解。sliceValue1和sliceValue2是两个不同的slice结构体,但是具体的值指向的地址是同一个空间,空间里面有2个值,100和200,但是sliceValue1的len为1,所以只会打印出100。sliceValue3等于&sliceValue1,此时sliceValue3只占用了8bytes,指向sliceValue1的地址,如果对sliceValue3进行append操作,sliceValue1结构体的len会发生变化,同时值空间指向的值也会发生变化,导致第二个值变成了300,从而影响了sliceValue2的值。

package main

import "fmt"

func main() {
    sliceValue1 := make([]int64, 0, 10)
    sliceValue1 = append(sliceValue1, 100)

    sliceValue2 := sliceValue1
    sliceValue2 = append(sliceValue2, 200)

    sliceValue3 := &sliceValue1
    *sliceValue3 = append(*sliceValue3, 300)

    fmt.Println(sliceValue1)
    fmt.Println(sliceValue2)
    fmt.Println(sliceValue3)
}

// 打印信息
[100 300]
[100 300]
&[100 300]
©著作权归作者所有,转载或内容合作请联系作者
  • 序言:七十年代末,一起剥皮案震惊了整个滨河市,随后出现的几起案子,更是在滨河造成了极大的恐慌,老刑警刘岩,带你破解...
    沈念sama阅读 212,542评论 6 493
  • 序言:滨河连续发生了三起死亡事件,死亡现场离奇诡异,居然都是意外死亡,警方通过查阅死者的电脑和手机,发现死者居然都...
    沈念sama阅读 90,596评论 3 385
  • 文/潘晓璐 我一进店门,熙熙楼的掌柜王于贵愁眉苦脸地迎上来,“玉大人,你说我怎么就摊上这事。” “怎么了?”我有些...
    开封第一讲书人阅读 158,021评论 0 348
  • 文/不坏的土叔 我叫张陵,是天一观的道长。 经常有香客问我,道长,这世上最难降的妖魔是什么? 我笑而不...
    开封第一讲书人阅读 56,682评论 1 284
  • 正文 为了忘掉前任,我火速办了婚礼,结果婚礼上,老公的妹妹穿的比我还像新娘。我一直安慰自己,他们只是感情好,可当我...
    茶点故事阅读 65,792评论 6 386
  • 文/花漫 我一把揭开白布。 她就那样静静地躺着,像睡着了一般。 火红的嫁衣衬着肌肤如雪。 梳的纹丝不乱的头发上,一...
    开封第一讲书人阅读 49,985评论 1 291
  • 那天,我揣着相机与录音,去河边找鬼。 笑死,一个胖子当着我的面吹牛,可吹牛的内容都是我干的。 我是一名探鬼主播,决...
    沈念sama阅读 39,107评论 3 410
  • 文/苍兰香墨 我猛地睁开眼,长吁一口气:“原来是场噩梦啊……” “哼!你这毒妇竟也来了?” 一声冷哼从身侧响起,我...
    开封第一讲书人阅读 37,845评论 0 268
  • 序言:老挝万荣一对情侣失踪,失踪者是张志新(化名)和其女友刘颖,没想到半个月后,有当地人在树林里发现了一具尸体,经...
    沈念sama阅读 44,299评论 1 303
  • 正文 独居荒郊野岭守林人离奇死亡,尸身上长有42处带血的脓包…… 初始之章·张勋 以下内容为张勋视角 年9月15日...
    茶点故事阅读 36,612评论 2 327
  • 正文 我和宋清朗相恋三年,在试婚纱的时候发现自己被绿了。 大学时的朋友给我发了我未婚夫和他白月光在一起吃饭的照片。...
    茶点故事阅读 38,747评论 1 341
  • 序言:一个原本活蹦乱跳的男人离奇死亡,死状恐怖,灵堂内的尸体忽然破棺而出,到底是诈尸还是另有隐情,我是刑警宁泽,带...
    沈念sama阅读 34,441评论 4 333
  • 正文 年R本政府宣布,位于F岛的核电站,受9级特大地震影响,放射性物质发生泄漏。R本人自食恶果不足惜,却给世界环境...
    茶点故事阅读 40,072评论 3 317
  • 文/蒙蒙 一、第九天 我趴在偏房一处隐蔽的房顶上张望。 院中可真热闹,春花似锦、人声如沸。这庄子的主人今日做“春日...
    开封第一讲书人阅读 30,828评论 0 21
  • 文/苍兰香墨 我抬头看了看天上的太阳。三九已至,却和暖如春,着一层夹袄步出监牢的瞬间,已是汗流浃背。 一阵脚步声响...
    开封第一讲书人阅读 32,069评论 1 267
  • 我被黑心中介骗来泰国打工, 没想到刚下飞机就差点儿被人妖公主榨干…… 1. 我叫王不留,地道东北人。 一个月前我还...
    沈念sama阅读 46,545评论 2 362
  • 正文 我出身青楼,却偏偏与公主长得像,于是被迫代替她去往敌国和亲。 传闻我的和亲对象是个残疾皇子,可洞房花烛夜当晚...
    茶点故事阅读 43,658评论 2 350

推荐阅读更多精彩内容