java.util.Math类是数学相关的工具类,里面提供了大量的静态方法,完成与数学运算相关的操作。
round() 方法返回一个最接近的 int、long 型值,四舍五入。
round 表示"四舍五入",**算法为Math.floor(x+0.5)** ,即将原来的数字加上 0.5 后再向下取整,所以 Math.round(11.5) 的结果为 12,Math.round(-11.5) 的结果为 -11。
**算法为Math.floor(x+0.5)**
该方法有以下几种语法格式:
京公网安备 11010502049817号