Go 类型断言
Posted staff
tags:
篇首语:本文由小常识网(cha138.com)小编为大家整理,主要介绍了Go 类型断言相关的知识,希望对你有一定的参考价值。
类型断言
作用是判断实现该接口的对象是不是某个类型。
可以通过打印空接口的值来推断空接口是什么具体类型。可以通过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 ", v)
case int:
fmt.Printf("x is a int is %v ", v)
case bool:
fmt.Printf("x is a bool is %v ", v)
default:
fmt.Println("unsupport type!")
}
}
这样也行。要类型断言有何用??
func guessType(obj interface{}) string {
tp := fmt.Sprintf("%T", obj)
return tp
}
以上是关于Go 类型断言的主要内容,如果未能解决你的问题,请参考以下文章