Java - Math floor(double) 方法



描述

Java Math floor(double a) 方法返回小于或等于参数且等于数学整数的最大(最接近正无穷大)双精度浮点数。特殊情况

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

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

声明

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

public static double floor(double a)

参数

a − 一个值。

返回值

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

异常

获取小于或等于正值的最大值示例

以下示例演示了 Math floor() 方法的使用。

package com.tutorialspoint;

public class MathDemo {

   public static void main(String[] args) {

      // get a double number
      double x = 10.7;

      // print the floor of the number
      System.out.println("Math.floor(" + x + ")=" + Math.floor(x));
   }
}

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

Math.floor(10.7)=10.0

获取小于或等于零值的最大值示例

以下示例演示了 Math floor() 方法对零值的使用。

package com.tutorialspoint;

public class MathDemo {

   public static void main(String[] args) {

      // get a double number
      double x = 0.0;

      // print the floor of the number
      System.out.println("Math.floor(" + x + ")=" + Math.floor(x));
   }
}

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

Math.floor(0.0)=0.0

获取小于或等于负值的最大值示例

以下示例演示了 Math floor() 方法对负数的使用。

package com.tutorialspoint;

public class MathDemo {

   public static void main(String[] args) {

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

      // print the floor of the number
      System.out.println("Math.floor(" + x + ")=" + Math.floor(x));
   }
}

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

Math.floor(-10.7)=-11.0
java_lang_math.htm
广告