关于Go 如何判断变量的类型

本文介绍两种用于判断变量类型的方式。

 

方法一

package main

import ( "fmt" )

func main() {

  v1 := "123456"

  v2 := 12

  fmt.Printf("v1 type:%T\n", v1)

  fmt.Printf("v2 type:%T\n", v2) }

输出: 

  v1 type:string

  v2 type:int

 

方法二

使用reflect包

package main

import (

  "fmt"

  "reflect"

)

func main() {

  v1 := "123456"

  v2 := 12

  // reflect

  fmt.Println("v1 type:", reflect.TypeOf(v1))

  fmt.Println("v2 type:", reflect.TypeOf(v2)) }

 

输出:

v1 type:string
v2 type:int

 

posted @ 2020-04-02 18:18  GopherStudy  阅读(8231)  评论(0编辑  收藏  举报