float32 float64
package main import "fmt" func main() { var xxx float32 var xxxx float64 xxx = -3542341.044434 xxxx = -3542341.044434 fmt.Print(xxx, xxxx) } -3.542341e+06 -3.542341044434e+06 整数位 指数为
golang 没有专门的 char 类型
原文地址:https://www.cnblogs.com/leleyao/p/11547257.html
时间: 2024-10-11 21:00:14