vote up -1 vote down star

What is the inclusive range of float and double in Java?

Why are you not recommended to use float or double for anything where precision is critical?

3  
Citation for that peculiar remark about not using float or double "for anything critical"? – Jonathan Feinberg Oct 30 at 15:35
4  
You asked two different questions in the title and the body. Ask one question at a time, and take your time to actually write a complete question. – Rich B Oct 30 at 15:48
1  
True, but 'not precise' does not imply 'not critical'. If something is performance-critical rather than precision-critical, floating point is a way better choice than, say, BigDecimal. – Joren Oct 30 at 15:49
You may also find this question useful: stackoverflow.com/questions/322749/… – Daniel Pryden Oct 30 at 16:25

locked by Marc Gravell Oct 31 at 8:47

4 Answers

vote up 4 vote down check

Java's Double class has members containing the Min and Max value for the type.

2^-1074 <= x <= (2-2^-52)·2^1023 // where x is the double.

Check out the Min_VALUE and MAX_VALUE static final members of Double.

(some)People will suggest against using floating point types for things where accuracy and precision are critical because rounding errors can throw off calculations by measurable (small) amounts.

link|flag
1  
Don't forget that some numbers are just not representable in Float or Double. The standard example is imagine a banking app where you are withdrawing $1.10 from $2.00. The result using doubles would be $0.899999999999999, due to a like of ability to represent 1.1 in double. – bodnarbm Oct 30 at 16:25
...and that's why you should always use a BigDecimal to represent money types (or in a more general sense, exact decimal amounts). – dtsazza Oct 30 at 17:03
@dtsazza - it's not required to use BigDecimal, you could also use an integer type and represent numbers in cents (instead of fractional dollars). The point is that you must not use float or double for money because of limited precision. – Jesper Oct 30 at 22:18
vote up 2 vote down

From Primitives Data Types:

  • float: The float data type is a single-precision 32-bit IEEE 754 floating point. Its range of values is beyond the scope of this discussion, but is specified in section 4.2.3 of the Java Language Specification. As with the recommendations for byte and short, use a float (instead of double) if you need to save memory in large arrays of floating point numbers. This data type should never be used for precise values, such as currency. For that, you will need to use the java.math.BigDecimal class instead. Numbers and Strings covers BigDecimal and other useful classes provided by the Java platform.

  • double: The double data type is a double-precision 64-bit IEEE 754 floating point. Its range of values is beyond the scope of this discussion, but is specified in section 4.2.3 of the Java Language Specification. For decimal values, this data type is generally the default choice. As mentioned above, this data type should never be used for precise values, such as currency.

For the range of values, see the section 4.2.3 Floating-Point Types, Formats, and Values of the JLS.

link|flag
Didn't you find your answers in the JLS? – Pascal Thivent Oct 30 at 15:48
vote up 1 vote down

Of course you can use floats or doubles for "critical" things ... Many applications do nothing but crunch numbers using these datatypes.

You might have misunderstood some of the various caveats regarding floating-point numbers, such as the recommendation to never compare for exact equality, and so on.

link|flag
vote up 1 vote down

Binary floating-point numbers have interesting precision characteristics, since the value is stored as a binary integer raised to a binary power. When dealing with sub-integer values (that is, values between 0 and 1), negative powers of two "round off" very differently than negative powers of ten.

For example, the number 0.1 can be represented by 1 x 10-1, but there is no combination of base-2 exponent and mantissa that can precisely represent 0.1 -- the closest you get is 0.10000000000000001.

So if you have an application where you are working with values like 0.1 or 0.01 a great deal, but where small (less than 0.000000000000001%) errors cannot be tolerated, then binary floating-point numbers are not for you.

Conversely, if powers of ten are not "special" to your application (powers of ten are important in currency calculations, but not in, say, most applications of physics), then you are actually better off using binary floating-point, since it's usually at least an order of magnitude faster, and it is much more memory efficient.

The article from the Python documentation on floating point issues and limitations does an excellent job of explaining this issue in an easy to understand form. Wikipedia also has a good article on floating point that explains the math behind the representation.

link|flag

Your Answer

Get an OpenID
or

Not the answer you're looking for? Browse other questions tagged or ask your own question.