最新下载
热门教程
- 1
- 2
- 3
- 4
- 5
- 6
- 7
- 8
- 9
- 10
Golang中对interface{}做type assertion和type switch学习笔记
时间:2022-06-25 04:43:21 编辑:袖梨 来源:一聚教程网
interface{}是一个通用类型,可以储存任意类型的值。如下方法来获取值的实际类型:
如果你比较确定类型可以使用type assertion:
var num interface{} = 100
if val,ok := num.(int); ok {
fmt.Println(val)
}
如果你不确定interface{}的具体类型,使用type switch:
var str interface{} = "abc"
switch v := str.(type) {
case string:
fmt.Println(v)
case int32, int64:
fmt.Println(v)
default:
fmt.Println("unknown")
}
相关文章
- 炉石传说兑换码大全 12-26
- 重返未来1999趋光性研究夜幕之外怎么玩 趋光性夜幕之外活动介绍 12-26
- 光遇12.26大蜡烛在哪里 光遇12月26日大蜡烛位置攻略 12-26
- 江南百景图金谷园怎么样 江南百景图金谷园建筑介绍 12-26
- 光遇12.26每日任务怎么做 光遇12月26日每日任务做法攻略 12-26
- 光遇12.26季节蜡烛在哪里 光遇12月26日季节蜡烛位置攻略 12-26