6.float类型 和 char 类型
Posted leleyao
tags:
篇首语:本文由小常识网(cha138.com)小编为大家整理,主要介绍了6.float类型 和 char 类型相关的知识,希望对你有一定的参考价值。
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 类型
以上是关于6.float类型 和 char 类型的主要内容,如果未能解决你的问题,请参考以下文章