gpt4 book ai didi

转到数组元素的地址

转载 作者:数据小太阳 更新时间:2023-10-29 03:07:23 24 4
gpt4 key购买 nike

Go 中如何获取数组元素的地址?

最佳答案

使用 address operator &获取数组元素的地址。这是一个例子:

package main

import "fmt"

func main() {
a := [5]int{1, 2, 3, 4, 5}
p := &a[3] // p is the address of the fourth element

fmt.Println(*p)// prints 4
fmt.Println(a) // prints [1 2 3 4 5]
*p = 44 // use pointer to modify array element
fmt.Println(a) // prints [1 2 3 44 5]

}

请注意,指针只能用于访问一个元素。不可能从指针中添加或减去访问其他元素。

关于转到数组元素的地址,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/25730966/

24 4 0
Copyright 2021 - 2024 cfsdn All Rights Reserved 蜀ICP备2022000587号
广告合作:1813099741@qq.com 6ren.com