Is the value of Integer.MAX_VALUE different between 32bit JVMs and 64bit JVMs?
I am compiling a Java class using 32bit JDK and deploy it on a 64bit machine. I just want to make sure that I can rely on detecting if (aNumber == Integer.MAX_VALUE).
|
Is the value of I am compiling a Java class using 32bit JDK and deploy it on a 64bit machine. I just want to make sure that I can rely on detecting |
||||
|
|
|
No. By definition |
|||
|
|
No. The 32-bit JDK makes 32-bit addresses for the instances, and the 64-bit JDK makes 64-bit addresses for the object instances. Thus, Integer.MAX_VALUE is the same, because it's just an value, not an object address. :) |
|||||
|
|
This constant has the same value regardless of whether the JVM the code is running on is 32-bit or 64-bit. The documentation for Integer.MAX_VALUE describes this value as:
|
|||
|
|
|
You probably want to avoid comparing Integers using Comparing Integers (provided aNumber is an object of class and no, there is no difference. |
||||
|