Java Math getExponent() 方法与示例
Java.lang.Math.getExponent()是一个内置的数学函数,它返回用于表示浮点数的无偏指数。
- 如果参数为 NaN 或无穷大,则结果为Float.MAX_EXPONENT + 1。
- 如果参数为零或低于正常值,则结果为Float.MIN_EXPONENT -1。
句法:
public static int getExponent(float val)
Parameter:
val - a float value
回报:
该方法返回参数的无偏指数。
示例:显示Java.lang.Math.getExponent()函数的工作
// Java program to demonstrate working
// of java.lang.Math.getExponent() method
import java.lang.Math;
class Gfg {
// driver code
public static void main(String args[])
{
float x = 7689.1f;
float y = -794.99f;
// print the unbiased exponent of them
System.out.println(Math.getExponent(x));
System.out.println(Math.getExponent(y));
// print the unbiased exponent of 0
System.out.println(Math.getExponent(0));
}
}
输出:
12
9
-127