我有一個(gè)類型type SpecialString *string我有兩個(gè)反映值,aVal并且bVal(為了清楚起見aVal并且bVal屬于類型reflect.Value)在哪里aVal.Type() // *SpecialStringbVal.Type() // *string在常規(guī)代碼中,我可以創(chuàng)建c一個(gè)指向特殊字符串的指針,如下所示:a := "foo"b := SpecialString(&a)c := &b 我怎樣才能使用反射來達(dá)到同樣的效果?aval.Set(bVal) // does not work: "reflect.Set: value of type *string is not assignable to type *SpecialString"
1 回答

慕田峪7331174
TA貢獻(xiàn)1828條經(jīng)驗(yàn) 獲得超13個(gè)贊
您需要轉(zhuǎn)換類型并注意您可以設(shè)置和不能設(shè)置的內(nèi)容。就像是:
type SpecialString string
var s string = "source regular string"
var ss SpecialString
// Get the reflect.Value of the thing &ss pointing at.
ssv := reflect.ValueOf(&ss).Elem()
// You need to convert string to SpecialString explicitly
ssv.Set(reflect.ValueOf(s).Convert(ssv.Type()))
fmt.Printf("ss = %T %+#v\n", ss, ss)
https://play.golang.org/p/OtFuS5bAaax
- 1 回答
- 0 關(guān)注
- 136 瀏覽
添加回答
舉報(bào)
0/150
提交
取消