Java Math rint()方法返回最接近指定值且等于数学整数的值。
也就是说,如果指定值为5.8,则等于数学整数的最接近值是6.0。而对于值5.4,等于数学整数的最接近值是5.0。
rint()方法的语法为:
Math.rint(double value)
注意:rint()方法是静态方法。因此,我们可以使用类名Math直接调用该方法。
arg - 返回其最接近值等于数学整数的参数
返回最接近的值,arg值等于数学整数
class Main { public static void main(String[] args) { // Math.rint() //小数点后的值大于5 System.out.println(Math.rint(1.878)); // 2.0 //小数点后的值小于5 System.out.println(Math.rint(1.34)); // 1.0 //小数点后的值等于5 System.out.println(Math.rint(1.5)); // 2.0 //小数点后等于5的值 System.out.println(Math.rint(2.5)); // 2.0 } }
在上面的示例中,请注意两个表达式,
// 返回 2.0 Math.rint(1.5) // 返回 2.0 Math.rint(2.5)
在这两种情况下,小数点后的值均等于5。然而,
对于1.5 - 方法是向上四舍五入。
对于2.5 - 方法是向下四舍五入。
这是因为在 .5 的情况下,rint()方法四舍五入到最接近的偶数值。因此,在两种情况下,该方法均舍入为2.0。