📌  相关文章
📜  打印 golang 中值的类型 - Go 编程语言 - Go 编程语言代码示例

📅  最后修改于: 2022-03-11 14:45:02.723000             🧑  作者: Mango

代码示例1
// printType method prints the type of a value in golang
func printType() {
    x := 12
    fmt.Printf("%T", x)    // output: int
}