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

Golang 切片

时间:2020-01-28 23:27:31      阅读:84      评论:0      收藏:0      [点我收藏+]

标签:error:   初始   make   style   引用   code   ice   type   panic   

1. 为什么需要切片,和数组区别?

数组是定长的,切片是变长的

底层是数组存储

声明

var identifier []type

区分数组是[]中没有数字

var arr = [3]int {1, 2, 3}
fmt.Println(arr)
var sl = []int {1, 2, 3}
fmt.Println(sl)
fmt.Printf("类型 arr:%T, sl:%T", arr, sl

输出

[1 2 3]
[1 2 3]
类型 arr:[3]int, sl:[]int

2. 声明

2.1 通过 var identifier []type

2.2 通过make,如

var slice1 []type = make([]type, len,capacity)

其中 capacity 是容量,可省略;len是长度;需capacity >= len

3. 定义

3.1 直接初始化

var sl = []int {1, 2, 3}

3.2 引用数组、切片

s := []int{0, 1, 2, 3, 4, 5, 6, 7, 8}
var num3 = s[6:7]

4. 添加元素、扩容

4.1 通过下标直接复制

4.2 通过append追加

var nums2 = make([]int, 3, 4)
fmt.Printf("len:%d cap:%d slice:%v", len(nums2), cap(nums2), nums2)
nums2 = append(nums2, 1, 2,3)
fmt.Printf("len:%d cap:%d slice:%v", len(nums2), cap(nums2), nums2)

输出

len:3 cap:4 slice:[0 0 0]len:6 cap:8 slice:[0 0 0 1 2 3]

说明:make([]int, 3, 4) 已经给前三个元素复制0了,append的时候在后面追加;当切片长度大于容量时会自动扩容,容量变为原来的二倍

另外,不仅可以扩容单个元素,还可以扩容数组、切片

 

var num_tmp = []int{5,5,5}
nums2 = append(nums2, num_tmp...)

 

此时注意num_tmp后面需要加...表示添加里面的元素

5. 长度len, 容量cap

var nums2 = make([]int, 3, 4)
nums2[0] = 0
nums2[1] = 1
nums2[2] = 2
fmt.Printf("len:%d cap:%d slice:%v", len(nums2), cap(nums2), nums2)

输出

len:3 cap:4 slice:[0 1 2]

:此时访问nums2[3]是不行的,因为并未初始化

panic: runtime error: index out of range [3] with length 3

6. copy

num4 := make([]int, len(nums2), 2 * len(nums2))
copy(num4, nums2)
nums2[0] = 1000
fmt.Println(num4, nums2)
fmt.Printf("%p, %p", num4, nums2)

拷贝后两个切片指向不同的数组(地址不同),nums2改了其中的一个元素,对num4没影响(深拷贝)

输出

[0 0 0 1 2 3 5 5 5] [1000 0 0 1 2 3 5 5 5]
0xc000098090, 0xc000096000

Golang 切片

标签:error:   初始   make   style   引用   code   ice   type   panic   

原文地址:https://www.cnblogs.com/kaituorensheng/p/12239111.html

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