码迷,mamicode.com
首页 > 其他好文 > 详细

Go slice的容量和长度

时间:2015-01-08 18:19:56      阅读:207      评论:0      收藏:0      [点我收藏+]

标签:

package main

import (
  "fmt"
)

func main() {
  a := []int{1,2,3,4}
  fmt.Println("a:",len(a), cap(a), a)

  b := [10]int{1,2,3,4}
  fmt.Println("b:",len(b), cap(b), b)

  c := make([]int, 4, 10)
  fmt.Println("c:",len(c), cap(c),c)

  d := b[:5]
  fmt.Println("d:",len(d), cap(d),d)
  e := append(d,5) //append后d的容量不变
  e[0] = 100//没超出底层数组的容量,因此e和d都指向同一个数组,修改e会影响d
  fmt.Println("d after append:",len(d), cap(d),d)
  fmt.Println("e:",len(e), cap(e),e)

}

执行结果:

a: 4 4 [1 2 3 4]

b: 10 10 [1 2 3 4 0 0 0 0 0 0]

c: 4 10 [0 0 0 0]

d: 5 10 [1 2 3 4 0]

d after append: 5 10 [100 2 3 4 0]

e: 6 10 [100 2 3 4 0 5]

Go slice的容量和长度

标签:

原文地址:http://my.oschina.net/lxpan/blog/365144

(0)
(0)
   
举报
评论 一句话评论(0
登录后才能评论!
© 2014 mamicode.com 版权所有  联系我们:gaon5@hotmail.com
迷上了代码!