Java Math.getExponent() 方法
java.lang.Math.getExponent() 返回的double或float表示所使用的无偏指数。
1 语法
public static int getExponent(float x)
public static int getExponent(double x)
2 参数
x:参数
3 返回值
返回参数的无偏指数。
- 如果参数为正值或负值double或float值,此方法将返回无偏指数。
- 如果参数为NaN或Infinity,则此方法将返回Float.MAX_EXPONENT + 1或Double.MAX_EXPONENT + 1。
- 如果参数为零,则此方法将返回Float.MIN_EXPONENT-1或Double.MIN_EXPONENT-1。
4 示例1
package com.yiidian;
/**
* 一点教程网: http://www.yiidian.com
*/
public class Demo
{
public static void main(String[] args)
{
double a = 50.45;
// 输入double值,输出指数
System.out.println(Math.getExponent(a));
}
}
输出结果为:
5
5 示例2
package com.yiidian;
/**
* 一点教程网: http://www.yiidian.com
*/
public class Demo
{
public static void main(String[] args)
{
float a = 83.2f;
// 输入float值,输出指数
System.out.println(Math.getExponent(a));
}
}
输出结果为:
6
6 示例3
package com.yiidian;
/**
* 一点教程网: http://www.yiidian.com
*/
public class Demo
{
public static void main(String[] args)
{
double a = 1.0/0;
// 输入类型为double的无穷大,输出为(Double.MAX_EXPONENT + 1)
System.out.println(Math.getExponent(a));
}
}
输出结果为:
1024
7 示例4
package com.yiidian;
/**
* 一点教程网: http://www.yiidian.com
*/
public class Demo
{
public static void main(String[] args)
{
float a = 1.0f/0;
// float类型输入无穷大,输出(Float.MAX_EXPONENT + 1)
System.out.println(Math.getExponent(a));
}
}
输出结果为:
128
8 示例5
package com.yiidian;
/**
* 一点教程网: http://www.yiidian.com
*/
public class Demo
{
public static void main(String[] args)
{
float a = 0.0f;
// 输入零,输出(Float.MIN_EXPONENT-1)
System.out.println(Math.getExponent(a));
}
}
输出结果为:
-127
9 示例6
package com.yiidian;
/**
* 一点教程网: http://www.yiidian.com
*/
public class Demo
{
public static void main(String[] args)
{
double a = 0.0;
// 输入零,输出(Double.MIN_EXPONENT-1)
System.out.println(Math.getExponent(a));
}
}
输出结果为:
-1023
热门文章
优秀文章