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

前端之家收集整理的这篇文章主要介绍了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

原文链接:https://www.f2er.com/go/187924.html

猜你在找的Go相关文章