Java.lang.Math.floor() 方法

描述

java.lang.Math.floor(double a) 返回小于或等于参数且等于数学整数的最大(最接近正无穷大)双精度值。 特别案例:

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

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


声明

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

public static double floor(double a)

参数

a − 一个值。


返回值

此方法返回小于或等于参数且等于数学整数的最大(最接近正无穷大)浮点值。


异常

NA


示例

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

package com.tutorialspoint;

import java.lang.*;

public class MathDemo {

   public static void main(String[] args) {

      // get two double numbers
      double x = 60984.1;
      double y = -497.99;
   
      // call floor and print the result
      System.out.println("Math.floor(" + x + ")=" + Math.floor(x));
      System.out.println("Math.floor(" + y + ")=" + Math.floor(y));
      System.out.println("Math.floor(0)=" + Math.floor(0));
   }
}

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

Math.floor(60984.1)=60984.0
Math.floor(-497.99)=-498.0
Math.floor(0)=0.0