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


Java 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

相关用法


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