go

在Go中将float32转换为int

英文: cast from float32 to int in Go 问题 我尝试了几种方法将浮点数转换为整数,我想要的是截断浮点数,只获取整数部分。 我正在使用 x := float32(3.1) ...