迹忆客 计算机编程题库

Go 经典面试题 部分一

简述如何在Go中打印变量的类型?

解析:

以下代码打印变量的类型

var a, b, c = 3, 4, "foo"  
fmt.Printf("a is of type %T\n", a)
fmt.Printf("b is of type %T\n", b)
fmt.Printf("c is of type %T\n", c)

查看笔记

扫码一下
查看教程更方便