round 抽象方法

int round()
override

返回与该数字最接近的整数。

当没有最接近的整数时,向零舍入:(3.5).round() == 4(-3.5).round() == -4

如果该数字不是有限的(非数字或无穷大),则抛出 UnsupportedError

print(3.0.round()); // 3
print(3.25.round()); // 3
print(3.5.round()); // 4
print(3.75.round()); // 4
print((-3.5).round()); // -4

实现

int round();