为了账号安全,请及时绑定邮箱和手机立即绑定

如何在 Golang 中打印切片的内存地址?

如何在 Golang 中打印切片的内存地址?

Go
POPMUISE 2021-07-27 17:06:32
我在 C 方面有一些经验,而且我对 golang 完全陌生。func learnArraySlice() {  intarr := [5]int{12, 34, 55, 66, 43}  slice := intarr[:]  fmt.Printf("the len is %d and cap is %d \n", len(slice), cap(slice))  fmt.Printf("address of slice 0x%x add of Arr 0x%x \n", &slice, &intarr)}现在在 golang 切片中是一个数组引用,它包含指向切片数组 len 和切片上限的指针,但该切片也将分配在内存中,我想打印该内存的地址。但无法做到这一点。
查看完整描述

3 回答

?
慕桂英546537

TA贡献1848条经验 获得超10个赞

切片及其元素是可寻址的:


s := make([]int, 10)

fmt.Printf("Addr of first element: %p\n", &s[0])

fmt.Printf("Addr of slice itself:  %p\n", &s)


查看完整回答
反对 回复 2021-08-02
?
慕森王

TA贡献1777条经验 获得超3个赞

对于切片底层数组和数组的地址(它们在您的示例中是相同的),


package main


import "fmt"


func main() {

    intarr := [5]int{12, 34, 55, 66, 43}

    slice := intarr[:]

    fmt.Printf("the len is %d and cap is %d \n", len(slice), cap(slice))

    fmt.Printf("address of slice %p add of Arr %p\n", &slice[0], &intarr)

}

输出:


the len is 5 and cap is 5 

address of slice 0x1052f2c0 add of Arr 0x1052f2c0


查看完整回答
反对 回复 2021-08-02
  • 3 回答
  • 0 关注
  • 485 浏览
慕课专栏
更多

添加回答

举报

0/150
提交
取消
意见反馈 帮助中心 APP下载
官方微信