Java.lang.StrictMath.round() 方法

描述

java.lang.StrictMath.round(float a) 方法返回最接近参数的 int。 结果通过加 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.tutorialspoint;

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