java中的三种取整函数

java中我们时常需要对float浮点型进行取值运算,以下3个函数会经常用到。

1、舍掉小数取整:Math.floor(3.5)=3
2、四舍五入取整:Math.rint(3.5)=4
3、进位取整:Math.ceil(3.1)=4