155

基本上,迭代 a 的字段值的唯一方法(据我所知)struct是这样的:

type Example struct {
    a_number uint32
    a_string string
}

//...

r := &Example{(2 << 31) - 1, "...."}:
for _, d:= range []interface{}{ r.a_number, r.a_string, } {
  //do something with the d
}

我想知道,是否有更好、更通用的实现方式[]interface{}{ r.a_number, r.a_string, },所以我不需要单独列出每个参数,或者是否有更好的方法来循环遍历结构?

我试图翻阅reflect包裹,但我碰壁了,因为我不知道一旦我取回了该做什么reflect.ValueOf(*r).Field(0)

谢谢!

4

7 回答 7

162

使用检索该reflect.Value字段后,Field(i)您可以通过调用从中获取接口值Interface()。所述接口值则表示该字段的值。

没有函数可以将字段的值转换为具体类型,因为您可能知道,go 中没有泛型。因此,没有GetValue() T 带有T作为该字段类型的签名的函数(当然,它会根据字段而变化)。

你可以在 go 中实现的最接近的是GetValue() interface{},这正是reflect.Value.Interface() 提供的。

以下代码说明了如何使用反射 ( play ) 获取结构中每个导出字段的值:

import (
    "fmt"
    "reflect"
)

func main() {
    x := struct{Foo string; Bar int }{"foo", 2}

    v := reflect.ValueOf(x)

    values := make([]interface{}, v.NumField())

    for i := 0; i < v.NumField(); i++ {
        values[i] = v.Field(i).Interface()
    }

    fmt.Println(values)
}
于 2013-09-21T00:36:11.143 回答
70

如果要遍历结构的字段和值,则可以使用下面的 Go 代码作为参考。

package main

import (
    "fmt"
    "reflect"
)

type Student struct {
    Fname  string
    Lname  string
    City   string
    Mobile int64
}

func main() {
    s := Student{"Chetan", "Kumar", "Bangalore", 7777777777}
    v := reflect.ValueOf(s)
    typeOfS := v.Type()

    for i := 0; i< v.NumField(); i++ {
        fmt.Printf("Field: %s\tValue: %v\n", typeOfS.Field(i).Name, v.Field(i).Interface())
    }
}

在操场上奔跑

注意:如果结构中的字段未导出,v.Field(i).Interface()则会出现恐慌panic: reflect.Value.Interface: cannot return value obtained from unexported field or method.

于 2019-07-17T10:12:35.117 回答
16

Go 1.17 (Q3 2021) 应该通过提交 009bfeaCL 281233添加一个新选项,修复问题 42782

反映:添加 VisibleFields 功能

在编写反映结构类型的代码时,通常需要了解完整的结构字段集,包括由于嵌入匿名成员而可用的字段,同时排除由于与另一个字段处于同一级别而被删除的字段同名。

这样做的逻辑并没有那么复杂,但它有点微妙并且容易出错。

此 CLreflect.VisibleFields()向包中添加了一个新函数,该函数reflect返回适用于给定结构类型的完整有效字段集。

fields := reflect.VisibleFields(typ)
for j, field := range fields {
    ...
}

例子,

type employeeDetails struct {
    id          int16
    name        string
    designation string
}
func structIterator() {
    fields := reflect.VisibleFields(reflect.TypeOf(struct{ employeeDetails }{}))
    for _, field := range fields {
        fmt.Printf("Key: %s\tType: %s\n", field.Name, field.Type)
    }
}
于 2021-03-06T22:35:54.127 回答
7

也许为时已晚:))) 但是还有另一种解决方案,您可以找到结构的键和值并对其进行迭代

package main

import (
    "fmt"
    "reflect"
)

type person struct {
    firsName string
    lastName string
    iceCream []string
}

func main() {
    u := struct {
        myMap    map[int]int
        mySlice  []string
        myPerson person
    }{
        myMap:   map[int]int{1: 10, 2: 20},
        mySlice: []string{"red", "green"},
        myPerson: person{
            firsName: "Esmaeil",
            lastName: "Abedi",
            iceCream: []string{"Vanilla", "chocolate"},
        },
    }
    v := reflect.ValueOf(u)
    for i := 0; i < v.NumField(); i++ {
        fmt.Println(v.Type().Field(i).Name)
        fmt.Println("\t", v.Field(i))
    }
}
and there is no *panic* for v.Field(i)
于 2020-11-25T18:36:05.423 回答
0

用这个:

type x struct {
    Id  int
    jsj int
}
func main() {
    x2 := x{jsj: 10, Id: 5}
    v := reflect.ValueOf(x2)
    for i := 0; i < v.NumField(); i++ {
        fmt.Println(v.Field(i))
    }
}

====>10

====>5

于 2021-05-11T01:21:10.677 回答
-1

服用Chetan Kumar解决方案,以防您需要申请map[string]int

package main

import (
    "fmt"
    "reflect"
)

type BaseStats struct {
    Hp           int
    HpMax        int
    Mp           int
    MpMax        int
    Strength     int
    Speed        int
    Intelligence int
}

type Stats struct {
    Base map[string]int
    Modifiers []string
}

func StatsCreate(stats BaseStats) Stats {
    s := Stats{
        Base: make(map[string]int),
    }

    //Iterate through the fields of a struct
    v := reflect.ValueOf(stats)
    typeOfS := v.Type()

    for i := 0; i< v.NumField(); i++ {
        val := v.Field(i).Interface().(int)
        s.Base[typeOfS.Field(i).Name] = val
    }
    return s
}

func (s Stats) GetBaseStat(id string) int {
    return s.Base[id]
}


func main() {
    m := StatsCreate(BaseStats{300, 300, 300, 300, 10, 10, 10})

    fmt.Println(m.GetBaseStat("Hp"))
}


于 2020-01-24T11:05:04.123 回答
-1

使用reflect包。首先,使用 获取变量的类型reflect.TypeOf并获取元素的数量。要reflect.NumField获取结构的迭代字段的值,必须反映变量并使用函数rg.Elem().Field(i)

package main

import (
    "fmt"
    "reflect"
)

type Gopher struct {
    Name  string
    Color string
    Year  int
}

func main() {
    g := Gopher{Name: "AAA", Color: "BBBB", Year: 2021}

    gtype := reflect.TypeOf(g)

    numFields := gtype.NumField()

    rg := reflect.ValueOf(&g)

    for i := 0; i < numFields; i++ {
        fmt.Println(rg.Elem().Field(i))
    }
}
于 2021-04-27T03:54:10.403 回答