当前位置: 首页>>代码示例 >>用法及示例精选 >>正文


Java Java.lang.Math.rint()用法及代码示例



描述

这个java.lang.Math.rint(double a)返回值最接近参数且等于数学整数的双精度值。如果作为数学整数的两个 double 值同样接近,则结果是偶数的整数值。特殊情况~

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

  • 如果自变量是NaN或无穷大或正零或负零,则结果与自变量相同。

声明

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

public static double rint(double a)

参数

a─ 双重值。

返回值

此方法返回与数学整数相等的最接近的浮点值。

异常

NA

示例

下面的例子展示了 lang.Math.rint() 方法的用法。

package com.tutorialspoint;

import java.lang.*;

public class MathDemo {

   public static void main(String[] args) {

      // get two double numbers
      double x = 1654.9874;
      double y = -9765.134;
   
      // find the closest integers for these double numbers
      System.out.println("Math.rint(" + x + ")=" + Math.rint(x));
      System.out.println("Math.rint(" + y + ")=" + Math.rint(y));
   }
}

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

Math.rint(1654.9874)=1655.0
Math.rint(-9765.134)=-9765.0

相关用法


注:本文由纯净天空筛选整理自 Java.lang.Math.rint() Method。非经特殊声明,原始代码版权归原作者所有,本译文未经允许或授权,请勿转载或复制。