Java Math getExponent()

That is, a float or double number is converted into floating-point representation. From the representation, the method returns the exponent part.

The syntax of the getExponent() method is:

Math.getExponent(value)

Note: The getExponent() method is a static method. Hence, we can call the method directly using the class name Math.


getExponent() Parameters

  • value - number whose exponent is to be returned

Note: The value can be either float or double.


getExponent() Return Values

  • returns the unbiased exponent from the floating-point representation of value

Example: Java Math.getExponent()