码迷,mamicode.com
首页 > 其他好文 > 详细

Go 类型断言

时间:2020-07-02 19:54:58      阅读:58      评论:0      收藏:0      [点我收藏+]

标签:lock   interface   没有   support   span   style   turn   block   col   

类型断言

作用是判断实现该接口的对象是不是某个类型
可以通过打印空接口的值来推断空接口是什么具体类型。可以通过Printf("%T",x)进行打印,那么..有没有什么方法可以在程序运行中得到空接口的具体类型呢?
x.(T)

例如:data, ok := a.(string)
x:表示类型为interface{}的变量
T:表示断言x可能是的类型。

示例:

func justifyType(x interface{}) {
    switch v := x.(type) {
        case string:
            fmt.Printf("x is a string,value is %v\n", v)
        case int:
            fmt.Printf("x is a int is %v\n", v)
        case bool:
            fmt.Printf("x is a bool is %v\n", v)
        default:
            fmt.Println("unsupport type!")
        }
}

这样也行。要类型断言有何用??

func guessType(obj interface{}) string {
  tp := fmt.Sprintf("%T", obj)
  return tp
}

 

Go 类型断言

标签:lock   interface   没有   support   span   style   turn   block   col   

原文地址:https://www.cnblogs.com/staff/p/13226492.html

(0)
(0)
   
举报
评论 一句话评论(0
登录后才能评论!
© 2014 mamicode.com 版权所有  联系我们:gaon5@hotmail.com
迷上了代码!