static double floor(double a)
优质
小牛编辑
136浏览
2023-12-01
描述 (Description)
java.lang.Math.floor(double a)返回小于或等于参数且等于数学整数的最大(最接近正无穷大)double值。 特别案例:
如果参数值已经等于数学整数,则结果与参数相同。
如果参数为NaN或无穷大或正零或负零,则结果与参数相同。
声明 (Declaration)
以下是java.lang.Math.floor()方法的声明
public static double floor(double a)
参数 (Parameters)
a - 一个值。
返回值 (Return Value)
此方法返回小于或等于参数的最大(最接近正无穷大)浮点值,并且等于数学整数。
异常 (Exception)
NA
例子 (Example)
以下示例显示了lang.Math.floor()方法的用法。
package cn.xnip;
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