java.lang.StrictMath.rint()方法實例
java.lang.StrictMath.rint() 方法返回最接近參數的double值,並等於某個整數。如果兩個double值是整數都同樣接近參數的值,結果是整數值是偶數。它包括以下情況:
- 如果參數值已經等於某個整數,那麼結果與參數一樣。
- 如果參數為NaN或無窮大,正零或負零,那麼結果與參數一樣。
聲明
以下是java.lang.StrictMath.rint()方法的聲明
public static double rint(double a)
參數
-
a -- 這是所使用的值。
返回值
此方法返回最接近的浮點值到等於某個整數。
異常
-
NA
例子
下麵的例子顯示java.lang.StrictMath.rint()方法的使用。
package com.yiibai; import java.lang.*; public class StrictMathDemo { public static void main(String[] args) { double d1 = 6.1 , d2 = 57.5 , d3 = 9.7; /* returns the double value that is close to the argument and is equal to a mathematical integer. */ double rintValue = StrictMath.rint(d1); System.out.println("integer value closest to " + d1 + " = " + rintValue); rintValue = StrictMath.rint(d2); System.out.println("integer value closest to " + d2 + " = " + rintValue); rintValue = StrictMath.rint(d3); System.out.println("integer value closest to " + d3 + " = " + rintValue); } }
讓我們來編譯和運行上麵的程序,這將產生以下結果:
integer value closest to 6.1 = 6.0 integer value closest to 57.5 = 58.0 integer value closest to 9.7 = 10.0