In Java what happens when you increment an int (or byte/short/long) beyond it's max value ? Does it wrap around to the max negative value ?
Does AtomicInteger.getAndIncrement() also behave in the same manner ?
|
|
From the Java Language Specification section on integer operations:
The results are specified by the language and independent of the JVM version: |
||||
|
|
|
If you do something like this:
If you now print out x, it will be the value -2147483648 |
|||
|
|
http://java.sun.com/docs/books/jls/second_edition/html/expressions.doc.html#13510 |
|||
|
|
|
What happens is an extra bit is added to the furthest right bit and the order decrements as a negatively signed int ... Notice what happens after 'int_32';
|
||||
|
|
|
This PDF give a neat explanation of how/why it works. Yes, the atomic version will do the same thing. |
|||
|
|
|
As jterrace says, the Java run-time will "wrap' the result to the Integer.MIN_VALUE of -2147483648. But that is Mathematically incorrect! The correct Mathematically answer is 2147483648. But an 'int' can't have a value of 2147483648. The 'int' boundaries are -2147483648 to 2147483647 So why doesn't Java throw an exception? Good question! An Array object would. But language authors know the scope of their primitive types, so they use the 'wrapping' technique to avoid a costly exception. You, as a developer, must test for these type boundaries. A simple test for incrementing would be
A simple test for decrementing would be
A complete test for both would be
|
||||
|
|