當前位置: 首頁>>代碼示例 >>用法及示例精選 >>正文


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。非經特殊聲明,原始代碼版權歸原作者所有,本譯文未經允許或授權,請勿轉載或複製。