package main import "fmt" func main() { n1 := 1.2345 fmt.Printf("%T ", n1) // float64, go 默认小数都是 float64 类型 }