当前位置: 首页>>代码示例 >>用法及示例精选 >>正文


Golang reflect.FieldByIndex()用法及代码示例


Go语言提供了运行时反射的内置支持实现,并允许程序借助反射包来操纵任意类型的对象。在Golang的reflect.FieldByIndex()函数是用于获取相应的索引嵌套领域。要访问此函数,需要在程序中导入反射包。

用法:
func (v Value) FieldByIndex(index []int) Value

参数:该函数仅接受单个参数。

  • index:此参数是[]整数类型。

返回值:此函数返回与索引对应的嵌套字段。

以下示例说明了以上方法在Golang中的用法:



范例1:

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

输出:

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

范例2:

// Golang program to illustrate 
// reflect.FieldByIndex() Function  
   
package main 
   
import ( 
    "fmt"
    "reflect"
) 
   
type User struct { 
    Id   int
    Name string 
    Age  int
} 
   
type Manager struct { 
         User  
    Title string 
} 
   
// Main function  
func main() { 
      
    m:= Manager{User:User{1, "Jack", 12}, Title:"123"} 
    t:= reflect.TypeOf(m) 
         fmt.Printf("%#v\n", t.Field(0))  
    fmt.Printf("%#v \n", t.Field(1)) 
      
    // use of FieldByIndex() method 
    fmt.Printf("%#v \n", t.FieldByIndex([]int{0, 0})) 
    fmt.Printf("%#v \n", t.FieldByIndex([]int{0, 1})) 
    fmt.Printf("%#v \n", t.FieldByIndex([]int{0, 2})) 
  
}

输出:

reflect.StructField{Name:”User”, PkgPath:””, Type:(*reflect.rtype)(0x4b1480), Tag:””, Offset:0x0, Index:[]int{0}, Anonymous:true}
reflect.StructField{Name:”Title”, PkgPath:””, Type:(*reflect.rtype)(0x4a1c20), Tag:””, Offset:0x20, Index:[]int{1}, Anonymous:false}
reflect.StructField{Name:”Id”, PkgPath:””, Type:(*reflect.rtype)(0x4a14e0), Tag:””, Offset:0x0, Index:[]int{0}, Anonymous:false}
reflect.StructField{Name:”Name”, PkgPath:””, Type:(*reflect.rtype)(0x4a1c20), Tag:””, Offset:0x8, Index:[]int{1}, Anonymous:false}
reflect.StructField{Name:”Age”, PkgPath:””, Type:(*reflect.rtype)(0x4a14e0), Tag:””, Offset:0x18, Index:[]int{2}, Anonymous:false}




相关用法


注:本文由纯净天空筛选整理自SHUBHAMSINGH10大神的英文原创作品 reflect.FieldByIndex() Function in Golang with Examples。非经特殊声明,原始代码版权归原作者所有,本译文未经允许或授权,请勿转载或复制。