Groovy - floor()
方法 floor 给出小于或等于参数的最大整数。
语法
double floor(double d) double floor(float f)
参数 − 双精度或浮点基本数据类型。
返回值 − 此方法返回小于或等于参数的最大整数。 作为双倍返回。
示例
以下是该方法的用法示例 −
class Example { static void main(String[] args) { double a = -100.675; float b = -90; System.out.println(Math.floor(a)); System.out.println(Math.floor(b)); } }
当我们运行上面的程序时,会得到下面的结果 −
-101.0 -90.0