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


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


Go语言提供了运行时反射的内置支持实现,并允许程序借助反射包来操纵任意类型的对象。 Golang中的reflect.Tag.Lookup()函数用于查找与标签字符串中的键相关联的值,如果标签中没有此类键,则返回一个空字符串,并确定是否将标签明确设置为空字符串。要访问此函数,需要在程序中导入反射包。

用法:
func (tag StructTag) Lookup(key string) (value string, ok bool)

参数:此函数采用字符串类型(值)和布尔类型(确定)的两个参数。

返回值:此函数返回与标签字符串中的key关联的值,并且该值已显式设置。

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



范例1:

// Golang program to illustrate 
// reflect.Tag.Lookup() Function  
  
package main 
  
import ( 
    "fmt"
    "reflect"
) 
  
// Main function  
func main() { 
    type S struct { 
        F0 string `val:"123456"` 
        F1 string `val:""` 
        F2 string 
    } 
  
    s:= S{} 
    st:= reflect.TypeOf(s) 
    for i:= 0; i < st.NumField(); i++ { 
        field:= st.Field(i) 
          
        // use of Lookup method 
        if value, ok:= field.Tag.Lookup("val"); ok { 
            if value == "" { 
                fmt.Println("(Empty)") 
            } else { 
                fmt.Println(value) 
            } 
        } else { 
            fmt.Println("(Non specific)") 
        } 
    }     
}

输出:

123456
(Empty)
(Non specific)

范例2:

// Golang program to illustrate 
// reflect.Tag.Lookup() Function  
  
package main 
  
import ( 
    "fmt"
    "reflect"
    "strconv"
) 
  
type Temp struct { 
    ID string `auto_increment:"true" increment:"1"` 
    Name string `varchar:"255"` 
    Surname string `"varchar:"255"` 
} 
  
// Main function  
func main() { 
    v:= Temp{} 
    // c variable represents table columns 
    c:= reflect.TypeOf(v).Field(0).Tag 
      
    // g variable represents get 
    g:= c.Get("increment") 
    fmt.Printf("Get method:%s\n", g) 
      
    val, ok:= c.Lookup("auto_increments") 
    fmt.Printf("Lookup method:%s- %s", val, strconv.FormatBool(ok))     
}

输出:

Get method:1
Lookup method:- false



相关用法


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