在Go中,如何將函數調用返回的值賦給指針?將函數返回的值賦給指針
下面這個例子,並指出time.Now()
返回time.Time
值(不是指針):
package main
import (
"fmt"
"time"
)
type foo struct {
t *time.Time
}
func main() {
var f foo
f.t = time.Now() // Fail line 15
f.t = &time.Now() // Fail line 17
tmp := time.Now() // Workaround
f.t = &tmp
fmt.Println(f.t)
}
這些都失敗:
$ go build
# _/home/jreinhart/tmp/go_ptr_assign
./test.go:15: cannot use time.Now() (type time.Time) as type *time.Time in assignment
./test.go:17: cannot take the address of time.Now()
確實是需要一個本地變量?這不會產生不必要的副本嗎?
我相信本地變量是必需的。所以在內存空間分配time.Now()。 f.t被定義爲一個指針,但它沒有,因爲它沒有被初始化,所以在內存中沒有位置。然後你通過引用分配tmp,它告訴f.t成爲tmp。所以你不會複製任何東西。 – reticentroot
查看可能的重複解釋和替代方法:[我如何在Go中執行literal * int64?](http://stackoverflow.com/questions/30716354/how-do-i-do-a-literal-int64-in -go/30716481#30716481);和[如何在Go中存儲對操作結果的引用?](http://stackoverflow.com/questions/34197248/how-can-i-store-reference-to-the-result-of-an-操作進行中去/ 34197367#34197367);和[如何從函數調用返回值的指針?](http://stackoverflow.com/questions/30744965/how-to-get-the-pointer-of-return-value-from-function-call/ 30751102#30751102) – icza
謝謝@icza,我肯定花了時間尋找這個問題,但我清楚地寫了不同的表述。 –