Java - Math round(float x) 方法



描述

java.lang.Math.round(float a) 方法返回最接近参数的 int 值。结果通过加上 1/2,取结果的 floor,并将结果强制转换为 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 值的结果。

异常

示例:获取正浮点值的四舍五入后的 int 值

以下示例显示了使用 Math round() 方法为正浮点值获取 long 值。

package com.tutorialspoint;
public class MathDemo {
   public static void main(String[] args) {

      // get a float number
      float x = 1654.9874f;

      // find the closest long for this float number
      System.out.println("Math.round(" + x + ")=" + Math.round(x));
   }
}

输出

让我们编译并运行上述程序,这将产生以下结果 -

Math.round(1654.9874)=1655

示例:获取负浮点值的四舍五入后的 int 值

以下示例显示了使用 Math round() 方法为负浮点值获取 long 值。

package com.tutorialspoint;
public class MathDemo {
   public static void main(String[] args) {

      // get a float number
      float x = -9765.134f;

      // find the closest long for this float number
      System.out.println("Math.round(" + x + ")=" + Math.round(x));
   }
}

输出

让我们编译并运行上述程序,这将产生以下结果 -

Math.round(-9765.134)=-9765

示例:获取零浮点值的四舍五入后的 int 值

以下示例显示了使用 Math round() 方法为零浮点值获取 long 值。

package com.tutorialspoint;
public class MathDemo {
   public static void main(String[] args) {

      // get float numbers
      float x = -0.0f;
      float y = 0.0f;	  

      // find the long for these float number
      System.out.println("Math.round(" + x + ")=" + Math.round(x));
	  System.out.println("Math.round(" + y + ")=" + Math.round(y));
   }
}

输出

让我们编译并运行上述程序,这将产生以下结果 -

Math.round(-0.0)=0
Math.round(0.0)=0
java_lang_math.htm
广告