如何在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]

}

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

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

10-17 01:39