java.lang.Math.rint()方法實例
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