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

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

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

Go
梵蒂冈之花 2023-08-14 17:16:32
我尝试编写一个函数来更新任意结构的所有字符串字段,如下所示: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() 得到“恐慌:反射:reflect.flag.mustBeAssignable 使用不可寻址的值”,因为 fieldValue.CanSet()==false。Reflect.ValueOf(&obj).Elem().FieldByName(fieldKey).SetString("fieldCleanString2 set name") 也失败,得到“恐慌:反射:在接口 Value 上调用reflect.Value.FieldByName”。调用 SetStringField2(&student) 得到“恐慌:反射:在 ptr Value 上调用reflect.Value.NumField”那么,还有其他方法可以完成这项工作吗?
查看完整描述

2 回答

?
慕桂英4014372

TA贡献1871条经验 获得超13个赞

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


// 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)

在操场上运行它



查看完整回答
反对 回复 2023-08-14
?
三国纷争

TA贡献1804条经验 获得超7个赞

解决方案一:

https://img1.sycdn.imooc.com//64d9f1230001efa005870432.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)

}


查看完整回答
反对 回复 2023-08-14
  • 2 回答
  • 0 关注
  • 133 浏览
慕课专栏
更多

添加回答

举报

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