day01-05float

f1 := 1.23456
fmt.Printf("%T\n",f1) //默认go语言中的小数都是float64类型 
//float64

f2 := float32(1.23456)
fmt.Printf("%T\n",f2)
//float32

你可能感兴趣的:(day01-05float)