java.lang.Math.round(float a) 返回最接近引數的整數。其結果是通過新增1/2取其結果為地板除,並且將結果轉換為int型別四捨五入為整數。特殊情況:
如果引數為NaN,則結果為0。
如果引數為負無窮大,或小於或等於Integer.MIN_VALUE的值的任何值,則結果等於Integer.MIN_VALUE值。
如果引數是正無窮大或大於或等於Integer.MAX_VALUE的值的任何值,其結果等於Integer.MAX_VALUE值。
以下是java.lang.Math.round()方法的宣告
public static int round(float a)
a -- 浮點數值被捨入為整數。
此方法返回四捨五入到最接近的int值的引數的值。
NA
下面的例子顯示lang.Math.round()方法的使用。
package com.yiibai; import java.lang.*; public class MathDemo { public static void main(String[] args) { // get two float numbers float x = 1654.9874f; float y = -9765.134f; // find the closest int for these floats System.out.println("Math.round(" + x + ")=" + Math.round(x)); System.out.println("Math.round(" + y + ")=" + Math.round(y)); } }
讓我們來編譯和執行上面的程式,這將產生以下結果:
Math.round(1654.9874f)=1655 Math.round(-9765.134f)=-9765