java.lang.Math.floor() 用于查找小于或等于参数且等于 double 值的数学整数的最大整数值。
用法
public static double floor(double a)
参数
x= a value
返回
This method returns largest floating-point value that is less than or equal
to the argument and is equal to a mathematical integer of a double value.
- 如果参数为正或负双精度值,此方法将返回 Floor 值。
- 如果参数为 NaN,则此方法将返回相同的参数。
- 如果参数为 Infinity,则此方法将返回与参数相同符号的 Infinity。
例子1
public class FloorExample1
{
public static void main(String[] args)
{
double x = 94.69;
// Input positive value, Output floor value of x
System.out.println(Math.floor(x));
}
}
输出:
94.0
例子2
public class FloorExample2
{
public static void main(String[] args)
{
double x = -39.28;
// Input negative value, Output floor value of x
System.out.println(Math.floor(x));
}
}
输出:
-40.0
例子3
public class FloorExample3
{
public static void main(String[] args)
{
double x = 0.0;
// Input positive zero, Output positive zero
System.out.println(Math.floor(x));
}
}
输出:
0.0
示例 4
public class FloorExample4
{
public static void main(String[] args)
{
double x = -7.0 / 0;
// Input negative infinity, Output negative infinity
System.out.println(Math.floor(x));
}
}
输出:
-Infinity
相关用法
- Java Math.floorDiv()用法及代码示例
- Java Math.multiplyExact()用法及代码示例
- Java Math.rint()用法及代码示例
- Java Math.nextUp()用法及代码示例
- Java Math.tan()用法及代码示例
- Java Math.asin()用法及代码示例
- Java Math.atan()用法及代码示例
- Java Math.nextAfter()用法及代码示例
- Java Math.exp()用法及代码示例
- Java Math.tanh()用法及代码示例
- Java Math.toDegrees()用法及代码示例
- Java Math.getExponent()用法及代码示例
- Java Math.toIntExact()用法及代码示例
- Java Math.IEEEremainder()用法及代码示例
- Java Math.sqrt()用法及代码示例
- Java Math.incrementExact()用法及代码示例
- Java Math.min()用法及代码示例
- Java Math.log()用法及代码示例
- Java Math.log1p()用法及代码示例
- Java Math.signum()用法及代码示例
注:本文由纯净天空筛选整理自 Java Math.floor() method。非经特殊声明,原始代码版权归原作者所有,本译文未经允许或授权,请勿转载或复制。