/*
需import "fmt" "reflect"
通过reflect反射获取不定长的任意object对象的type数据类型
返回数据类型切片
*/
func TypesOf(args ...interface{}) []reflect.Type {
mTypes := make([]reflect.Type, 0, cap(args))
for _, arg := range args {
mType := reflect.TypeOf(arg)
fmt.Println(" object=", arg, " type=", mType)
mTypes = append(mTypes, mType)
}
return mTypes
}
网友评论