Java - Math round(double x) 方法



描述

Java Math round(double a) 方法返回最接近参数的 long 值。结果通过添加 1/2,取结果的 floor 值,并将结果强制转换为 long 类型来四舍五入到整数。特殊情况:-

  • 如果参数是 NaN,则结果为 0。

  • 如果参数是负无穷大或任何小于或等于 Long.MIN_VALUE 的值,则结果等于 Long.MIN_VALUE 的值。

  • 如果参数是正无穷大或任何大于或等于 Long.MAX_VALUE 的值,则结果等于 Long.MAX_VALUE 的值。

声明

以下是 java.lang.Math.round() 方法的声明

public static long round(double a)

参数

a − 要四舍五入到 long 的浮点值。

返回值

此方法返回四舍五入到最接近的 long 值的参数值。

异常

示例:获取正 double 值的四舍五入的 long 值

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

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

      // get a double number
      double x = 1654.9874;

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

输出

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

Math.round(1654.9874)=1655

示例:获取负 double 值的四舍五入的 long 值

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

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

      // get a double number
      double x = -9765.134;

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

输出

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

Math.round(-9765.134)=-9765

示例:获取零 double 值的四舍五入的 long 值

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

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

      // get double numbers
      double x = -0.0;
      double y = 0.0;	  

      // find the long for these double 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
广告