最近有大量用到reflect,给一流开源项目gin贡献的pr就是这方面的技巧,也在自己的开源项目中使用了大量使用reflect简化接口开发。鉴于reflect的接口特别难用,特别容易忘记,记录下。
判断类型
// 提取类型信息到变量里
var stringSliceType = reflect.TypeOf([]string{})
var intSliceType = reflect.TypeOf([]int{})
var int32SliceType = reflect.TypeOf([]int32{})
func typeCheck(x interface{}) {
// 提取interface{}里面的类型信息
vt := reflect.ValueOf(x).Type()
switch vt {
case stringSliceType:
fmt.Printf("[]string{}\n")
case intSliceType:
fmt.Printf("[]int{}\n")
case int32SliceType:
fmt.Printf("[]int32{}\n")
default:
fmt.Printf("unkown type\n")
}
}
func main() {
typeCheck([]string{})
typeCheck([]int{})
typeCheck([]int32{})
typeCheck(0)
}
// 输出
// []string{}
// []int{}
// []int32{}
// unkown type
判断指针类型和空指针
func checkPtrAndNil(x interface{}) {
v := reflect.ValueOf(x)
if v.Kind() == reflect.Ptr {
fmt.Printf("%v is pointer\n", v.Type())
if v.IsNil() {
fmt.Printf("%v is is a null pointer\n", v.Type())
return
}
}
fmt.Printf("%v is value\n", v.Type())
}
func main() {
var ip *int
var sp *string
var i32p *int32
checkPtrAndNil(ip)
checkPtrAndNil(sp)
checkPtrAndNil(i32p)
checkPtrAndNil(3)
}
// 输出
// *int is pointer
// *int is is a null pointer
// *string is pointer
// *string is is a null pointer
// *int32 is pointer
// *int32 is is a null pointer
// int is value
有疑问加站长微信联系(非本文作者)