java.lang.Math.rint(double a) 返回double值最接近引數的值,並等於某個整數。如果兩個double值跟整數都同樣接近,結果是整數值是偶數。特殊情況:
如果引數值已經等於某個整數,那麼結果跟引數一樣。
如果引數為NaN或無窮大,正零或負零,那麼結果和引數一樣。
以下是java.lang.Math.rint()方法的宣告
public static double rint(double a)
a -- 一個double值
此方法返回到等於最接近某個整數的浮點值。
NA
下面的例子顯示lang.Math.rint()方法的使用。
package com.yiibai; import java.lang.*; public class MathDemo { public static void main(String[] args) { // get two double numbers double x = 1654.9874; double y = -9765.134; // find the closest integers for these double numbers System.out.println("Math.rint(" + x + ")=" + Math.rint(x)); System.out.println("Math.rint(" + y + ")=" + Math.rint(y)); } }
讓我們來編譯和執行上面的程式,這將產生以下結果:
Math.rint(1654.9874)=1655.0 Math.rint(-9765.134)=-9765.0