IEEE 754 Floating Point : Java Glossary

IEEE 754 Floating Point
the internal binary format used for floating point and double numbers. The format assigns a meaning to every possible combination of bits. There are also representation for NaN (Not A Number) (Not a Number) and plus and minus infinity.
Floating Point Bit Representation
Type Size in Bytes Size in Bits Accuracy Range Fields Integers
double 8 bytes 64 bits
14 to 15 significant digits
±4.94065645841246544e-324d to
±1.79769313486231570e+308d
is formed of 3 fields:
1-bit sign
11-bit base 2 exponent biased+1023
52-bit fraction, lead 1 implied
e.g. 3. = 0x4008000000000000
-3. = 0xC008000000000000
a double can exactly represent integers
in the range -253 to +253.
float 4 bytes 32 bits 6 to 7 significant digits ±1.40129846432481707e-45 to
±3.40282346638528860e+38
is formed of 3 fields:
1-bit sign
8-bit base 2 exponent biased+127
23-bit fraction, lead 1 implied
e.g. 3. = 0x404000
-3. = 0xC04000
a float can exactly represent integers
in the range -224 to +224.
A side effect of this signed-magnitude format is you can have both +0 and -0.

To study the IEEE (Institute of Electrical & Electronics Engineers) format, you can use Double.doubleToLongBits and Double.longBitsToDouble.


CMP homejump to top You can get the freshest copy of this page from: or possibly from your local J: drive (Java virtual drive/mindprod.com website mirror)
http://mindprod.com/jgloss/ieee754.html J:\mindprod\jgloss\ieee754.html
logo
Please email your , letters to the editor, errors, omissions, typos, formatting errors, ambiguities, unclear wording, broken/redirected link reports, suggestions to improve this page or comments to Roedy Green : feedback email. If you want your message, your name or email kept confidential, not considered for public posting, please explicitly specify that. Unless you state otherwise, I will treat your message as a letter to the editor that I may or may not publish in the feedback section. After that, it will be too late to retract it. If you disagree with something I said, please quote it and cite the web page where you found it, tell me why you think it is wrong, and, if possible, provide some supporting evidence. Threatening to kill me or spouting obscenities has yet to persuade me to change my mind.
mindprod.com IP:[65.110.21.43]
view BlogYour face IP:[38.107.179.212]
You are visitor number 18,174.