GO语言"reflect"包中"Value.FieldByIndex"类型的用法及代码示例。
用法:
func(v Value) FieldByIndex(index []int) Value
FieldByIndex 返回索引对应的嵌套字段。如果评估需要单步执行 nil 指针或不是结构的字段,它会出现Panics。
例子:
package main
import (
"fmt"
"reflect"
)
func main() {
// This example shows a case in which the name of a promoted field
// is hidden by another field: FieldByName will not work, so
// FieldByIndex must be used instead.
type user struct {
firstName string
lastName string
}
type data struct {
user
firstName string
lastName string
}
u := data{
user: user{"Embedded John", "Embedded Doe"},
firstName: "John",
lastName: "Doe",
}
s := reflect.ValueOf(u).FieldByIndex([]int{0, 1})
fmt.Println("embedded last name:", s)
}
输出:
embedded last name: Embedded Doe
相关用法
- GO Value用法及代码示例
- GO Values.Get用法及代码示例
- GO Values用法及代码示例
- GO Values.Set用法及代码示例
- GO Values.Has用法及代码示例
- GO Values.Del用法及代码示例
- GO Values.Add用法及代码示例
- GO Values.Encode用法及代码示例
- GO ValidString用法及代码示例
- GO Valid用法及代码示例
- GO ValidRune用法及代码示例
- GO Val用法及代码示例
- GO Varint用法及代码示例
- GO PutUvarint用法及代码示例
- GO Scanner.Scan用法及代码示例
- GO LeadingZeros32用法及代码示例
- GO NewFromFiles用法及代码示例
- GO Regexp.FindString用法及代码示例
- GO Time.Sub用法及代码示例
- GO Regexp.FindAllIndex用法及代码示例
注:本文由纯净天空筛选整理自golang.google.cn大神的英文原创作品 Value.FieldByIndex。非经特殊声明,原始代码版权归原作者所有,本译文未经允许或授权,请勿转载或复制。