golang显示数据的类型

前端之家收集整理的这篇文章主要介绍了golang显示数据的类型前端之家小编觉得挺不错的,现在分享给大家,也给大家做个参考。
package main

/** 建一个函数t 设置参数i 的类型为空接口,空接口可以接受任何数据类型 func t(i interface{}) { //函数t有一个参数i switch i.(type) { //多选语句switch case string: //是字符时做的事情 case int: //是整数时做的事情 } return } i.(type)只能在switch中使用 **/
import (
    "fmt"
    "reflect"
)

func main() {
    var x float64 = 3.4
    fmt.Println("type:",reflect.TypeOf(x))
}
原文链接:https://www.f2er.com/go/188763.html

猜你在找的Go相关文章