📜  Golang 中的reflect.FieldByIndex()函数示例

📅  最后修改于: 2021-10-24 14:06:49             🧑  作者: Mango

Go 语言提供了运行时反射的内置支持实现,并允许程序在反射包的帮助下操作任意类型的对象。 Golang中的reflect.FieldByIndex()函数用于获取index对应的嵌套字段。要访问此函数,需要在程序中导入反射包。

下面的例子说明了上述方法在 Golang 中的使用:

示例 1:

func (v Value) FieldByIndex(index []int) Value

输出:

// Golang program to illustrate
// reflect.FieldByIndex() Function 
   
package main
   
import (
    "fmt"
    "reflect"
)
   
// Main function 
func main() {
      
    tt:= reflect.StructOf([]reflect.StructField{
        {
            Name: "Height",
            Type: reflect.TypeOf(0.0),
            Tag:  `json:"height"`,
        },
        {
            Name: "Name",
            Type: reflect.TypeOf("abc"),
            Tag:  `json:"name"`,
        },
    })
      
    // use of FieldByIndex() method
    fmt.Println(tt.FieldByIndex([]int{0}))
  
}    

示例 2:

{Height  float64 json:"height" 0 [0] false}

输出: