要判断数据类型,可以用Go的空接口:
建一个函数t 设置参数i 的类型为空接口,空接口可以接受任何数据类型
func t(i interface{}) { //函数t有一个参数i
switch i.(type) { //多选语句switch
case string:
//是字符时做的事情
case int:
//是整数时做的事情
}
return
}
i.(type)只能在switch中使用
这函数没有返回值,你可以自己加入
----------------------------------------------------------------------------
还可以用反射:
package main
import (
"fmt"
"reflect"
)
func main() {
var x float64 = 3.4
fmt.Println("type:", reflect.TypeOf(x))
}
这样就可以得出变量x的类型信息,与上面不同的是:上面的方法要先知到它是几个类型中的一个,而这个方法可以对任意对象使用
Go笔记,仅供自己参考,如果能帮到您,那是我的荣幸
本文转自http://blog.sina.com.cn/s/blog_487109d101013g2p.html
时间: 2024-11-02 06:32:29