gpt4 book ai didi

reflection - Golang-获取结构属性名称

转载 作者:IT王子 更新时间:2023-10-29 00:45:33 27 4
gpt4 key购买 nike

我想使用反射包返回结构属性的名称。到目前为止,我有:

type MultiQuestions struct {
QuestionId int64
QuestionType string
QuestionText string
}
func (q *MultiQuestions) StructAttrName() string {
return reflect.ValueOf(q).Elem().Field(0).Name
}

然而,这给了我一个错误reflect.ValueOf(q).Elem().Field(0).Name undefined (type reflect.Value has no field or method Name)

我尝试转换为 StructField,但这也不起作用。我如何获得 Struct 的名称?

在这种情况下,我感兴趣的名称是 QuestionId、QuestionType 和 QuestionText。

最佳答案

您需要对 Type 而不是 Value 进行操作

func (q *MultiQuestions) StructAttrName() string {
return reflect.Indirect(reflect.ValueOf(q)).Type().Field(0).Name
}

playground

关于reflection - Golang-获取结构属性名称,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/25127959/

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