int int32 int64区别

winnie123321 · · 18872 次点击
一般情况下,int优先,需要明确bit数才需要int32或int64
#5
更多评论
根据你的变量的取值范围有多少大,以及是否会转成其他格式/在别的库里调用来决定。
#1
可以看这里:[https://golang.google.cn/ref/spec#Numeric_types](https://golang.google.cn/ref/spec#Numeric_types)
#2