使用非指针接收器接口实现的Go反射来设置字段值

时间:2019-05-16 19:01:26

标签: go reflection interface

目标是使用Go反射设置a.Stringer.Name的新值。

type A struct {
  Stringer fmt.Stringer
}

type MyStringer struct {
  Name string
}
func (m MyStringer) String() string {
  return m.Name
}

a := &A{
  Stringer: MyStringer {
    Name: "Adam",
  },
}

// The following code panics with: "reflect: reflect.Value.Set using unaddressable value"
reflect.ValueOf(a).Elem().
FieldByName("Stringer").Elem().
FieldByName("Name").Set(reflect.ValueOf("New name"))

尽管一切对于具体类型都适用:

type B struct {
  Stringer MyStringer
}

b := &B{
  Stringer: MyStringer {
    Name: "Adam",
  },
}

reflect.ValueOf(b).Elem().
FieldByName("Stringer").
FieldByName("Name").Set(reflect.ValueOf("New value"))

如何使接口结构可寻址?我想念什么吗?

0 个答案:

没有答案