java.lang.StrictMath.round(double a) 方法返回最接近引數的long值。其結果是通過新增1/2取其結果,並且將結果轉換長鍵入四捨五入為整數。它包括以下情況:
以下是java.lang.StrictMath.round()方法的宣告
public static long round(double a)
a -- 這是要捨入一個浮點到long值。
此方法返回四捨五入到最接近引數的long值。
NA
下面的例子顯示java.lang.StrictMath.round()方法的使用。
package com.yiibai; import java.lang.*; public class StrictMathDemo { public static void main(String[] args) { double d1 = 86.12 , d2 = 12.01; // returns the closest long to the argument long roundValue = StrictMath.round(d1); System.out.println("closest long value to " + d1 + " = " + roundValue); roundValue = StrictMath.round(d2); System.out.println("closest long value to " + d2 + " = " + roundValue); } }
讓我們來編譯和執行上面的程式,這將產生以下結果:
closest long value to 86.12 = 86 closest long value to 12.01 = 12