英文:
Go address of array element
问题
在Go语言中,要获取数组元素的地址,可以使用取址操作符&
。以下是一个示例代码:
package main
import "fmt"
func main() {
arr := [5]int{1, 2, 3, 4, 5}
// 获取数组元素的地址
addr := &arr[2]
fmt.Println("地址:", addr)
}
在上面的代码中,我们定义了一个包含5个整数的数组arr
。通过&arr[2]
,我们获取了数组第3个元素的地址,并将其赋值给addr
变量。最后,我们使用fmt.Println
函数打印出了该地址。
请注意,Go语言中的数组索引是从0开始的,所以arr[2]
表示数组的第3个元素。
英文:
How do I get the address of an array element in Go?
答案1
得分: 6
使用地址运算符&来获取数组元素的地址。以下是一个示例:
package main
import "fmt"
func main() {
a := [5]int{1, 2, 3, 4, 5}
p := &a[3] // p 是第四个元素的地址
fmt.Println(*p) // 输出 4
fmt.Println(a) // 输出 [1 2 3 4 5]
*p = 44 // 使用指针修改数组元素
fmt.Println(a) // 输出 [1 2 3 44 5]
}
请注意,指针只能用于访问一个元素。无法通过增加或减少指针来访问其他元素。
英文:
Use the address operator & to take the address of an array element. Here's an example:
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]
}
Note that the pointer can be used to access the one element only. It's not possible to add or subtract from the pointer to access other elements.
通过集体智慧和协作来改善编程学习和解决问题的方式。致力于成为全球开发者共同参与的知识库,让每个人都能够通过互相帮助和分享经验来进步。
评论