当对slice append 超出底层数组的界限时
//n1是n2的底层数组
n1 := [3]int{1,3}
n2 := n1[0:3]
fmt.Println("address of items in n1: ")
for i := 0; i < len(n1); i++ {
fmt.Printf("%pn",&n1[i])
}
//address of items in n1:
//0xc20801e160
//0xc20801e168
//0xc20801e170
fmt.Println("address of items in n2: ")
for i := 0; i < len(n2); i++ {
fmt.Printf("%pn",&n2[i])
}
//address of items in n2:
//0xc20801e160
//0xc20801e168
//0xc20801e170
//对n2执行append操作后,n2超出了底层数组n1的j
n2 = append(n2,1)
fmt.Println("address of items in n1: ")
for i := 0; i < len(n1); i++ {
fmt.Printf("%pn",&n1[i])
}
//address of items in n1:
//0xc20801e160
//0xc20801e168
//0xc20801e170
fmt.Println("address of items in n2: ")
for i := 0; i < len(n2); i++ {
fmt.Printf("%pn",&n2[i])
}
//address of items in n2:
//0xc20803a2d0
//0xc20803a2d8
//0xc20803a2e0
//0xc20803a2e8
引用“失效”
实现了删除slice最后一个item的函数
func rmLast(a []int) {
fmt.Printf("[rmlast] the address of a is %p",a)
a = a[:len(a)-1]
fmt.Printf("[rmlast] after remove,the address of a is %p",a)
}
调用此函数后,发现原来的slice并没有改变
func main() {
xyz := []int{1,4,5,6,7,8,9}
fmt.Printf("[main] the address of xyz is %pn",xyz)
rmLast(xyz)
fmt.Printf("[main] after remove,the address of xyz is %pn",xyz)
fmt.Printf("%v",xyz) //[1 2 3 4 5 6 7 8 9]
}
打印出来的结果如下:
[main] the address of xyz is 0xc2080365f0
[rmlast] the address of a is 0xc2080365f0
[rmlast] after remove,the address of a is 0xc2080365f0
[main] after remove,the address of xyz is 0xc2080365f0
[1 2 3 4 5 6 7 8 9]
这里直接打印了slice的指针值,因为slice是引用类型,所以指针值都是相同的,我们换成打印slice的地址看下
func rmLast(a []int) {
fmt.Printf("[rmlast] the address of a is %p",&a)
a = a[:len(a)-1]
fmt.Printf("[rmlast] after remove,&a)
}
func main() {
xyz := []int{1,&xyz)
rmLast(xyz)
fmt.Printf("[main] after remove,&xyz)
fmt.Printf("%v",xyz) //[1 2 3 4 5 6 7 8 9]
}
结果:
[main] the address of xyz is 0xc20801e1e0
[rmlast] the address of a is 0xc20801e200
[rmlast] after remove,the address of a is 0xc20801e200
[main] after remove,the address of xyz is 0xc20801e1e0
[1 2 3 4 5 6 7 8 9]
这次可以看到slice作为函数参数传入函数时,实际上也是拷贝了一份slice,因为slice本身是个指针,所以从现象来看,slice是引用类型