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

我在 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 和切片上限的指针,但该切片也将分配在内存中,我想打印该内存的地址。但无法做到这一点。


POPMUISE
浏览 488回答 3
3回答

慕桂英546537

切片及其元素是可寻址的:s := make([]int, 10)fmt.Printf("Addr of first element: %p\n", &s[0])fmt.Printf("Addr of slice itself:  %p\n", &s)

慕森王

对于切片底层数组和数组的地址(它们在您的示例中是相同的),package mainimport "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
打开App,查看更多内容
随时随地看视频慕课网APP

相关分类

Go