當前位置: 首頁>>代碼示例 >>用法及示例精選 >>正文


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。非經特殊聲明,原始代碼版權歸原作者所有,本譯文未經允許或授權,請勿轉載或複製。