gpt4 book ai didi

go - 从接口(interface)中获取所有字段

转载 作者:IT王子 更新时间:2023-10-29 01:06:31 26 4
gpt4 key购买 nike

我如何知道我可以从 reply 对象/接口(interface)访问哪些字段?我试过反射,但似乎你必须先知道字段名称。如果我需要知道我可以使用的所有字段怎么办?

// Do sends a command to the server and returns the received reply.
Do(commandName string, args ...interface{}) (reply interface{}, err error)

最佳答案

您可以使用 reflect.TypeOf()函数获取 reflect.Type类型描述符。从那里,您可以列出存储在界面中的动态值的字段。

例子:

type Point struct {
X int
Y int
}

var reply interface{} = Point{1, 2}
t := reflect.TypeOf(reply)
for i := 0; i < t.NumField(); i++ {
fmt.Printf("%+v\n", t.Field(i))
}

输出:

{Name:X PkgPath: Type:int Tag: Offset:0 Index:[0] Anonymous:false}
{Name:Y PkgPath: Type:int Tag: Offset:4 Index:[1] Anonymous:false}

Type.Field() 调用的结果是 reflect.StructField value 是一个 struct,其中包含字段的名称:

type StructField struct {
// Name is the field name.
Name string
// ...
}

如果您还需要字段的值,您可以使用 reflect.ValueOf()获得reflect.Value() , 然后你可以使用 Value.Field()Value.FieldByName() :

v := reflect.ValueOf(reply)
for i := 0; i < v.NumField(); i++ {
fmt.Println(v.Field(i))
}

输出:

1
2

Go Playground 上试试.

注意:指向结构的指针通常包含在接口(interface)中。在这种情况下,您可以使用 Type.Elem()Value.Elem() “导航”到指向的类型或值:

t := reflect.TypeOf(reply).Elem()

v := reflect.ValueOf(reply).Elem()

如果你不知道它是不是一个指针,你可以用Type.Kind()Value.Kind() 来检查它。 ,将结果与 reflect.Ptr 进行比较:

t := reflect.TypeOf(reply)
if t.Kind() == reflect.Ptr {
t = t.Elem()
}

// ...

v := reflect.ValueOf(reply)
if v.Kind() == reflect.Ptr {
v = v.Elem()
}

Go Playground 上尝试这个变体.

关于Go的反射的详细介绍,请阅读博文:The Laws of Reflection .

关于go - 从接口(interface)中获取所有字段,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/39866503/

26 4 0
Copyright 2021 - 2024 cfsdn All Rights Reserved 蜀ICP备2022000587号
广告合作:1813099741@qq.com 6ren.com