Tell me more ×
Stack Overflow is a question and answer site for professional and enthusiast programmers. It's 100% free, no registration required.

I have code to calculate the percentage difference between 2 numbers - (oldNum - newNum) / oldNum * 100; - where both of the numbers are doubles. I expected to have to add some sort of checking / exception handling in case oldNum is 0. However, when I did a test run with values of 0.0 for both oldNum and newNum, execution continued as if nothing had happened and no error was thrown. Running this code with ints would definitely cause an arithmetic division-by-zero exception. Why does Java ignore it when it comes to doubles?

share|improve this question
1  
Good question - the inconsistency between integer and double behavior adds confusion and hassle. – Steve B. Mar 4 '10 at 18:09

3 Answers

up vote 17 down vote accepted

The result of division by zero is infinity, which can be expressed with a float/double (as NaN - not a number), but not with an int.

share|improve this answer
4  
Exactly. This is defined in the Java Language Spec here: java.sun.com/docs/books/jls/third_edition/html/… – Michael Myers Mar 4 '10 at 18:02
1  
but this is the case of 0.0/0.0 which is NaN. – phaedrus Mar 4 '10 at 18:05
1  
Infinity is "not a number" in the traditional sense, so it is implemented this way. – Kris Mar 4 '10 at 18:06
2  
I think there should be an Integer.NaN – OscarRyz Mar 4 '10 at 18:16
4  
@trinithis: your explanation has nothing to do with the reason why there is no Integer.NaN. The reason is simply that the IEEE standard for floating point arithmetic mandates such special values whereas the quasi-standard for integer arithmetic (two's complement) has no such special values, thus leaving it to implementors how to deal with division by zero (raising an interrupt or exception, designating a special value, or just leaving the result undefined). – Michael Borgwardt Mar 4 '10 at 19:29
show 5 more comments

Java's float and double types, like pretty much any other language out there (and pretty much any hardware FP unit), implement the IEEE 754 standard for floating point math, which mandates division by zero to return a special "infinity" value. Throwing an exception would actually violate that standard.

Integer arithmetic (implemented as two's complement representation by Java and most other languages and hardware) is different and has no special infinity or NaN values, thus throwing exceptions is a useful behaviour there.

share|improve this answer
The proper answer to this question should be this. I needed to know why float and double does not cause Exceptions. Thanks. – Cengiz Can Oct 21 '11 at 9:25

The way a double is stored is quite different to an int. See http://firstclassthoughts.co.uk/java/traps/java_double_traps.html for a more detailed explanation on how Java handles double calculations. You should also read up on Floating Point numbers, in particular the concept of Not a Number (NaN).

If you're interested in learning more about floating point representation, I'd advise reading this document (Word format, sorry). It delves into the binary representation of numbers, which may be helpful to your understanding.

share|improve this answer

Your Answer

 
discard

By posting your answer, you agree to the privacy policy and terms of service.

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