Golang use of .(type) outside type switch 关于参数类型

Golang 中如何获取参数的类型?
执行使用以下语句:

fmt.Println("type:",v.(type))

提示错误

use of .(type) outside type switch

正确的使用方法是必须在switch case中。
举例如下:

package main

import (
        "fmt"
)


func main() {

 CheckType("tow", 88,"three")

}



func CheckType(args ...interface{}) {


        for _,v := range args {

                switch v.(type) {

                        case int:

                                fmt.Println("type:int,value:",v)
                        case string:
                                fmt.Println("type:string,v)

                        default:

                                fmt.Println("type:unkown,v)


                }

        }


}

编译,执行

$ go build arm.go
$ ./arm

结果:

type:string,value: tow type:int,value: 88 type:string,value: three

相关文章

什么是Go的接口? 接口可以说是一种类型,可以粗略的理解为他...
1、Golang指针 在介绍Golang指针隐式间接引用前,先简单说下...
1、概述 1.1 Protocol buffers定义 Protocol buffe...
判断文件是否存在,需要用到"os"包中的两个函数: os.Stat(...
1、编译环境 OS :Loongnix-Server Linux release 8.3 CPU指...
1、概述 Golang是一种强类型语言,虽然在代码中经常看到i:=1...