英文:
Golang - how Struct in internal be implemented?
问题
我对Go语言中的结构体感到困惑。
这是代码:http://play.golang.org/p/b1NEh7JZoK
为什么我不能获取一个变量的地址给结构体?
如果我有两个int变量,一个存储值,一个存储地址(指针),像这样:http://play.golang.org/p/XhvKX-ifdn
我可以获取这两个变量的实际地址,但为什么结构体不能呢?
英文:
I'm quite confusing about the struct in Go.
This is the code: http://play.golang.org/p/b1NEh7JZoK
Why I could't get the address of a variable to a struct?
If I have two int variables, one stores value, one stores address(pointer), like this : http://play.golang.org/p/XhvKX-ifdn
I can get the actual address of these two variables, but why struct can't?
答案1
得分: 3
fmt.Println
以更可读的格式打印内容。如果你想要实际看到地址,可以使用fmt.Printf
和%p
占位符:
fmt.Printf("%p\n", &a) // 0x10328000
fmt.Printf("%p -> %p\n", &b, b) // 0x1030e0c0 -> 0x10328000
英文:
fmt.Println
prints things in a more readable format. If you want to actually see the addresses, use fmt.Printf
with %p
verb:
fmt.Printf("%p\n", &a) // 0x10328000
fmt.Printf("%p -> %p\n", &b, b) // 0x1030e0c0 -> 0x10328000
通过集体智慧和协作来改善编程学习和解决问题的方式。致力于成为全球开发者共同参与的知识库,让每个人都能够通过互相帮助和分享经验来进步。
评论