Go 數據類型判斷

一、使用Go的空接口: i.(type) 只能在switch中使用,函數沒有返回值web func m_type(i interface{}) { switch i.(type) { case string: //... case int: //... } return } 二、使用反射: reflect.TypeOf(x)s
相關文章
相關標籤/搜索