java.lang.StrictMath.round(float a)方法实例
java.lang.StrictMath.round(float a) 方法返回最接近参数的整数。其结果是通过添加1/2取其结果,并且将结果转换为int类型四舍五入为整数。它包括以下情况:
- 如果参数为NaN,则结果为0。
- 如果参数为负无穷大,或小于或等于Integer.MIN_VALUE的值,则结果等于Integer.MIN_VALUE的值。
- 如果参数是正无穷大或大于或等于Integer.MAX_VALUE值的任何值,其结果等于Integer.MAX_VALUE的值。
声明
以下是java.lang.StrictMath.round()方法的声明
public static int round(float a)
参数
-
a -- 这是要舍入为整数的浮点值。
返回值
此方法返回四舍五入到最接近参数的int值。
异常
-
NA
例子
下面的例子显示java.lang.StrictMath.round()方法的使用。
package com.yiibai; import java.lang.*; public class StrictMathDemo { public static void main(String[] args) { float f1 = 98.22f , f2 = 23.44f; // returns the closest int to the argument int roundValue = StrictMath.round(f1); System.out.println("closest int value to " + f1 + " = " + roundValue); roundValue = StrictMath.round(f2); System.out.println("closest int value to " + f2 + " = " + roundValue); } }
让我们来编译和运行上面的程序,这将产生以下结果:
closest int value to 98.22 = 98 closest int value to 23.44 = 23