1.直接使用接口
func m_type(i interface{}) {
switch i.(type) {
case string:
//...
case int:
//...
}
return
}
2.使用反射reflect.TypeOf(x)
1.直接使用接口
func m_type(i interface{}) {
switch i.(type) {
case string:
//...
case int:
//...
}
return
}
2.使用反射reflect.TypeOf(x)