我有這兩種結構:查找結構基礎匿名字段中鍵入轉到
type CustomTime struct {
time.Time
}
type Events struct {
Timestamp CustomTime
}
當我reflect
爲Events.Timestamp
領域,我得到CustomTime
;我怎樣才能得到time.Time
的實際底層類型?
我有這兩種結構:查找結構基礎匿名字段中鍵入轉到
type CustomTime struct {
time.Time
}
type Events struct {
Timestamp CustomTime
}
當我reflect
爲Events.Timestamp
領域,我得到CustomTime
;我怎樣才能得到time.Time
的實際底層類型?
有我想要的類型演員;) – RayfenWindspear
因爲這是對問題的正確答案,我仍然懷疑這個問題是否正確... – TehSphinX
類型的'Timestamp'是'CustomTime'得到的時間值。嵌入不是繼承。 – JimB
你想完成什麼? – TehSphinX
也許XY問題? – RayfenWindspear