Java - Math rint(double x) 方法



描述

Java Math rint(double a) 方法返回与参数最接近且等于数学整数的双精度数值。如果两个双精度数值都与数学整数同样接近,则结果为偶数的整数数值。特殊情况 -

  • 如果参数值已经等于数学整数,则结果与参数相同。

  • 如果参数为 NaN 或无穷大或正零或负零,则结果与参数相同。

声明

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

public static double rint(double a)

参数

a − 双精度数值。

返回值

此方法返回与 a 最接近的浮点数值,该数值等于数学整数。

异常

示例:获取正双精度数值的最接近整数

以下示例演示了如何使用 Math rint() 方法获取正双精度数值的双精度数值。

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

      // get a double number
      double x = 1654.9874;

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

输出

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

Math.rint(1654.9874)=1655.0

示例:获取负双精度数值的最接近整数

以下示例演示了如何使用 Math rint() 方法获取负双精度数值的双精度数值。

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

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

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

输出

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

Math.rint(-9765.134)=-9765.0

示例:获取零双精度数值的最接近整数

以下示例演示了如何使用 Math rint() 方法获取零双精度数值的双精度数值。

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

      // get a double number
      double x = -0.0;
      double y = 0.0;	  

      // find the closest integers for these double number
      System.out.println("Math.rint(" + x + ")=" + Math.rint(x));
	  System.out.println("Math.rint(" + y + ")=" + Math.rint(y));
   }
}

输出

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

Math.rint(-0.0)=-0.0
Math.rint(0.0)=0.0
java_lang_math.htm
广告