round抽象方法

int round()
override

返回最接近此数字的整数。

如果没有最接近的整数,则远离零进行四舍五入:(3.5).round() == 4(-3.5).round() == -4

如果此数字不是有限的(NaN或无穷大),则抛出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();