理解reflect.ValueOf()和Value.Elem()之間的區別
Reflect.ValueOf()作為反射的門戶,允許您取得非反射值(如字串或整數)的reflect.Value描述符。
在另一方面,Value.Elem() 充當reflect.Value 中的方法。它可用來檢索原始reflect.Value封裝的值所引用的值(也是reflect.Value)。請注意,reflect.Indirect() 也可以用於此目的。
要從反射轉換回非反射,請使用Value.Interface() 方法,該方法將包裝的值作為簡單介面傳回{ }.
var i int = 3 var p *int = &i fmt.Println(p, i) // Output: 0x414020 3 v := reflect.ValueOf(p) fmt.Println(v.Interface()) // Output: 0x414020 v2 := v.Elem() fmt.Println(v2.Interface()) // Output: 3
高階用例:Value.Elem() for介面
如果reflect.Value包裝了一個介面值,Value.Elem()也可以檢索該介面內的具體值。
var r io.Reader = os.Stdin v := reflect.ValueOf(r) fmt.Println(v.Type()) // Output: *os.File v2 := reflect.ValueOf(&r) fmt.Println(v2.Type()) // Output: *io.Reader fmt.Println(v2.Elem().Type()) // Output: io.Reader fmt.Println(v2.Elem().Elem().Type()) // Output: *os.File
以上是Go 中的 `reflect.ValueOf()` 和 `Value.Elem()` 有什麼不同?的詳細內容。更多資訊請關注PHP中文網其他相關文章!