为了账号安全,请及时绑定邮箱和手机立即绑定

如何更新任意go结构的所有字符串字段?

如何更新任意go结构的所有字符串字段?

Go
互换的青春 2022-04-26 19:44:22
我尝试编写一个函数来更新任意结构的所有字符串字段,如下所示:type Student struct {  Name  string  Age   int}func SetStringField(obj interface{}) {    reflect.ValueOf(obj).Elem().FieldByName("Name").SetString("set name")}func main() {  student := Student{    "alice",    12,  }  SetStringField(&student)}但是这个函数只能更新特定的字段。我试试这个:func SetStringField2(obj interface{}) {    // Keys := reflect.TypeOf(obj)    Values := reflect.ValueOf(obj)    count := reflect.ValueOf(obj).NumField()    for i := 0; i < count; i++ {        // fieldKey := Keys.Field(i).Name        fieldValue := Values.Field(i)        switch fieldValue.Kind() {        case reflect.String:            // fieldValue.CanSet()==false            fieldValue.SetString("fieldCleanString2 set name")            // panic: reflect: call of reflect.Value.FieldByName on interface Value            // reflect.ValueOf(&obj).Elem().FieldByName(fieldKey).SetString("123")        }    }}func main() {  student := Student{    "alice",    12,  }  SetStringField2(student)}fieldValue.SetString() 因为 fieldValue.CanSet()==false 而得到“panic: reflect: reflect.flag.mustBeAssignable using unaddressable value”。reflect.ValueOf(&obj).Elem().FieldByName(fieldKey).SetString("fieldCleanString2 set name") 也失败了,得到“panic: reflect: call of reflect.Value.FieldByName on interface Value”。并调用 SetStringField2(&student) 得到“恐慌:反映:在 ptr 值上调用 reflect.Value.NumField”那么,还有其他方法可以完成这项工作吗?
查看完整描述

2 回答

?
白衣染霜花

TA贡献1796条经验 获得超10个赞

问题是反射值不可设置。要解决此问题,请从指针创建反射值。


// SetStringField2 sets strings fields on the struct pointed to by ps.

func SetStringField2(ps interface{}) {

    v := reflect.ValueOf(ps).Elem() // Elem() dereferences pointer

    for i := 0; i < v.NumField(); i++ {

        fv := v.Field(i)

        switch fv.Kind() {

        case reflect.String:

            fv.SetString("fieldCleanString2 set name")

        }

    }

}

将指向值的指针传递给函数:


student := Student{

    "alice",

    12,

}

SetStringField2(&student)


查看完整回答
反对 回复 2022-04-26
?
慕丝7291255

TA贡献1859条经验 获得超6个赞

解决方案1:

//img1.sycdn.imooc.com//6267db370001033307060514.jpg

package service


import (

    "fmt"

    "reflect"

    "testing"

)



func SetStringField2(obj interface{}) {

    Values := reflect.ValueOf(obj).Elem()

    count := reflect.Indirect(reflect.ValueOf(obj)).NumField()

    for i := 0; i < count; i++ {

        fieldValue := Values.Field(i)

        switch fieldValue.Kind() {

        case reflect.String:

            fieldValue.SetString("fieldCleanString2 set name")

        }

    }

}


func TestSetValue(t *testing.T) {


    type Student struct {

        Name string

        Age  int

    }

    student := &Student{

        "alice",

        12,

    }


    SetStringField2(student)


    fmt.Print(student.Name)

}


查看完整回答
反对 回复 2022-04-26
  • 2 回答
  • 0 关注
  • 158 浏览
慕课专栏
更多

添加回答

举报

0/150
提交
取消
意见反馈 帮助中心 APP下载
官方微信