dqz7636 2018-11-01 22:58
浏览 6
已采纳

如何使用反射设置用户定义类型的值?

I have a type

type SpecialString *string

I have two reflect values, aVal and bVal (just to be clear aVal and bVal are of type reflect.Value) where

aVal.Type() // *SpecialString
bVal.Type() // *string

In regular code I can create c, a pointer to a special string like so:

a := "foo"
b := SpecialString(&a)
c := &b   

How can I achieve the same using reflection?

aval.Set(bVal) // does not work: "reflect.Set: value of type *string is not assignable to type *SpecialString"
  • 写回答

1条回答 默认 最新

  • dongyakui8675 2018-11-01 23:23
    关注

    You need to convert the types and pay attention to what you can and cannot set. Something like:

    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
    ", ss, ss)
    

    https://play.golang.org/p/OtFuS5bAaax

    本回答被题主选为最佳回答 , 对您是否有帮助呢?
    评论

报告相同问题?

悬赏问题

  • ¥15 2024-五一综合模拟赛
  • ¥15 下图接收小电路,谁知道原理
  • ¥15 装 pytorch 的时候出了好多问题,遇到这种情况怎么处理?
  • ¥20 IOS游览器某宝手机网页版自动立即购买JavaScript脚本
  • ¥15 手机接入宽带网线,如何释放宽带全部速度
  • ¥30 关于#r语言#的问题:如何对R语言中mfgarch包中构建的garch-midas模型进行样本内长期波动率预测和样本外长期波动率预测
  • ¥15 ETLCloud 处理json多层级问题
  • ¥15 matlab中使用gurobi时报错
  • ¥15 这个主板怎么能扩出一两个sata口
  • ¥15 不是,这到底错哪儿了😭