Golang:将接口动态转换为类型变量

Golang:将接口动态转换为类型变量,第1张

Golang:将接口动态转换为类型变量

不,你不能。Go是一种静态类型的语言。变量的类型在编译时确定。

如果要动态确定的

type
interface{}
可以使用类型切换:

var t interface{}t = functionOfSomeType()switch t := t.(type) {default:    fmt.Printf("unexpected type %T", t)       // %T prints whatever type t hascase bool:    fmt.Printf("boolean %tn", t)  // t has type boolcase int:    fmt.Printf("integer %dn", t)  // t has type intcase *bool:    fmt.Printf("pointer to boolean %tn", *t) // t has type *boolcase *int:    fmt.Printf("pointer to integer %dn", *t) // t has type *int}


欢迎分享,转载请注明来源:内存溢出

原文地址: http://outofmemory.cn/zaji/5476449.html

(0)
打赏 微信扫一扫 微信扫一扫 支付宝扫一扫 支付宝扫一扫
上一篇 2022-12-12
下一篇 2022-12-12

发表评论

登录后才能评论

评论列表(0条)

保存