我比较喜欢先给出代码,然后得出结论
数组
复制代码 代码如下:
package main
import (
"fmt"
)
func main() {
arr := [...]int{1, 2, 3}
//打印初始的指针
fmt.Printf("the pointer is : %p \n", &arr)
printPointer(arr)
}
func printPointer(any interface{}) {
fmt.Printf("the pointer is : %p \n", &any)
}
结果
复制代码 代码如下:
1 the pointer is : 0xc082008580
2 the pointer is : 0xc0820001d0
切片
复制代码 代码如下:
package main
import (
"fmt"
)
func main() {
arr := make([]int, 3)
//打印初始的指针
fmt.Printf("the pointer is : %p \n", arr)
printPointer(arr)
}
func printPointer(any interface{}) {
fmt.Printf("the pointer is : %p \n", any)
}
结果
复制代码 代码如下:
1 the pointer is : 0xc082008580
2 the pointer is : 0xc082008580
map
复制代码 代码如下:
package main
import (
"fmt"
)
func main() {
arr := make(map[int]string)
//arr := [3]int{1, 2, 3}
//打印初始的指针
fmt.Printf("the pointer is : %p \n", arr)
printPointer(arr)
}
func printPointer(any interface{}) {
fmt.Printf("the pointer is : %p \n", any)
}
运行结果
复制代码 代码如下:
1 the pointer is : 0xc082007c80
2 the pointer is : 0xc082007c80
由此,我们看到数组本身传过去的是值,传到函数之后,被开辟了另外一个空间。
因为数组就是他本身。这一句好像不太好理解。
这是切片 arr := make([]int, 3) 而arr 本身不是一个数组,至少不是我们所想要的指向的一个数组。只是arr里有一个地址指向数组。
这么举个例子:
arr := [...]int{1,2,3,4,5} 这是一个数组,懂得go语言的都明白。 arr本身就是数组
arrSlice := arr[0:5] 这是一个切片。 打印所得的值是一样的,和上面。 arrSlice本身不是数组,只是arrSlice本身有一个值是指向arr的指针。
切片是指一个结构体,大体结构像这样:
复制代码 代码如下:
struct slice{
ptr *Elem
len int
cap int
}
也就是说,上面的arrSlice其实是一个结构体。里面有一个属性 ptr指向数组 arr
其实arrSlice也是传到函数里,也是进行了复制。但是尽管传过去是一个复制的结构体,他的属性ptr,没有变。还是一个指向原数组的指针。
下面的例子见证他自己传过去,是一个复制的过程:
复制代码 代码如下:
package main
import (
"fmt"
)
func main() {
arrSlice := make([]int, 4)
fmt.Printf("the pointer is : %p \n", arrSlice)
fmt.Printf("the pointer is : %p \n", &arrSlice) //这是arrSlice本身的指针,也就是结构体的指针
printPointer(arrSlice)
}
func printPointer(any interface{}) {
fmt.Printf("the pointer is : %p \n", any)
fmt.Printf("the pointer is : %p \n", &any) //打印传过来的结构体arrSlice的指针
}
看结果:
复制代码 代码如下:
the pointer is : 0xc0820085a0
the pointer is : 0xc082008580
the pointer is : 0xc0820085a0
the pointer is : 0xc0820001d0
第1、3个的打印是打印这个结构体的ptr属性,也就是指向数组的指针。
其实这个结构体传到函数里,是一个复制的过程,第2、4的指针不一样。
大家在对照下面的图片理解一下:
免责声明:本站资源来自互联网收集,仅供用于学习和交流,请遵循相关法律法规,本站一切资源不代表本站立场,如有侵权、后门、不妥请联系本站删除!
更新日志
- 刘德华《LOVEHOPE 希望 爱》香港首批豪华版[WAV+CUE][1.1G]
- 群星.1994-宝丽金超级孖宝2CD【宝丽金】【WAV+CUE】
- 群星.1992-滚石第一流台湾歌·12王牌大车拼【滚石】【WAV+CUE】
- 龚玥《金装龚玥HQCD》头版限量[WAV+CUE]
- 任贤齐《任贤齐创作集 音乐旅行者》[WAV+CUE][1.1G]
- 群星《快乐巨星·百万畅销曲85》2CD[WAV+CUE][828M]
- 合集《IU 李知恩2009-2022所有歌曲合集》[FLAC][7.4G]
- 童丽-《民歌》紫银合金AQCD[WAV+CUE]
- 刀郎2024.08.30《山歌响起的地方》资中“知交”线上演唱会.mp4
- [爵士女声测试大碟]洁辛塔《秋叶)[SACD-WAV]
- 任贤齐《任贤齐创作集 音乐旅行者》[WAV+CUE][1.1G]
- 赵传《一颗滚石的25年》 2CD引进版[WAV+CUE][1.6G]
- 群星《往岁乘霄》[320K/MP3][39.84MB]
- 群星《往岁乘霄》[FLAC/分轨][211.79MB]
- 群星.2024-JamboMedley(BEYOND40周年致敬2)【Kinns】【FLAC分轨】