拉风的咖菲猫
int(math.Round(f))在 Go 中将浮点数转换为 int 时,您可以使用舍入到最接近的整数。当浮点数设置为字节或符文时,小数也会被丢弃。当它设置为字符串或布尔值时,不会发生截断。package mainimport ( . "fmt" . "math")func main() { f := 3.6 c := []interface{}{byte(f), f, int(Round(f)), rune(f), Sprintf("%.f", f), f != 0} checkType(c)}func checkType(s []interface{}) { for k, _ := range s { Printf("%T %v\n", s[k], s[k]) }}Round 返回最接近的整数,从零四舍五入。请参阅https://golang.org/pkg/math/#Round。请参阅https://stackoverflow.com/a/61503758/12817546。f := 3.6截断为“uint8 3”,f为“float64 3.6”,int(Round(f))向上舍入为“int 4”, rune(f)截断为“int32 3”, Sprintf("%.f", f)为“string 3.6”并f != 0输出“bool true”。