我在 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)
慕森王
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
- 3 回答
- 0 关注
- 485 浏览
添加回答
举报
0/150
提交
取消