Go:结构类型的指针行为

huangapple go评论81阅读模式
英文:

Go: pointer behaviour for a struct type

问题

这段代码:

y := 7
fmt.Println(y)
fmt.Println(&y)
fmt.Println(*&y)

它输出了7,一些内存地址和7,符合预期。

但是这段代码:

x := time.Now()
fmt.Println(x)
fmt.Println(&x)
fmt.Println(*&x)

它总是输出当前时间。

难道第二个Println不应该输出一些内存地址吗?

英文:

This code:

y := 7
fmt.Println(y)
fmt.Println(&y)
fmt.Println(*&y)

It prints 7, some memory address and 7, as expected.

But this:

x := time.Now()
fmt.Println(x)
fmt.Println(&x)
fmt.Println(*&x)

It always prints current time.

Shouldn't second Println print some memory address?

答案1

得分: 2

实现了fmt.Stringer接口的类型,在指针或值上调用string()函数。而没有实现该接口的类型,则会打印内存地址。

time.Time实现了fmt.Stringer接口,而int类型没有。

英文:

A type that implements fmt.Stringer gets func string() called on pointer or value. A type that does not gets the memory address printed.

time.Time implements fmt.Stringer, while int does not.

huangapple
  • 本文由 发表于 2023年7月8日 18:30:02
  • 转载请务必保留本文链接:https://go.coder-hub.com/76642472.html
匿名

发表评论

匿名网友

:?: :razz: :sad: :evil: :!: :smile: :oops: :grin: :eek: :shock: :???: :cool: :lol: :mad: :twisted: :roll: :wink: :idea: :arrow: :neutral: :cry: :mrgreen:

确定