java.lang.Math.round(double a) 返回最接近引數的long值。其結果是通過新增1/2取其結果為地板除,並且將結果long四捨五入轉換為整數。特殊情況:
如果引數為NaN,則結果為0。
如果引數為負無窮大,或小於或等於Long.MIN_VALUE值的任何值,則結果等於Long.MIN_VALUE值。
如果引數為正無窮大,或者大於或等於Long.MAX_VALUE值的任何值,則結果等於Long.MAX_VALUE值。
以下是java.lang.Math.round()方法的宣告
public static long round(double a)
a -- 浮點值舍入到long。
此方法返回四捨五入到最接近引數long值的值。
NA
下面的例子顯示lang.Math.round()方法的使用。
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 long for these doubles System.out.println("Math.round(" + x + ")=" + Math.round(x)); System.out.println("Math.round(" + y + ")=" + Math.round(y)); } }
讓我們來編譯和執行上面的程式,這將產生以下結果:
Math.round(1654.9874)=1655 Math.round(-9765.134)=-9765