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

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).

share|improve this question

4 Answers

up vote 4 down vote accepted

No. By definition Integer.MAX_VAlUE = 2^31 - 1

Integer.MAX_VALUE

share|improve this answer
It goes further than that: the compilation platform makes no difference at all: the output will be the same. In an ideal world even the runtime platform would make no difference, but there might be minor differences here. – Joachim Sauer Oct 21 '11 at 13:07

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. :)

share|improve this answer
Note that a 64bit JVM can use 32 bit references. See CompressedOops for details. – Joachim Sauer Oct 21 '11 at 10:25
Yes, that's perfectly right. Forgot to add it. :) – kocko Oct 21 '11 at 11:37

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:

A constant holding the maximum value an int can have, 231-1.

share|improve this answer

You probably want to avoid comparing Integers using = sign due to:

Comparing Integers (provided aNumber is an object of class java.lang.Integer)

and no, there is no difference.

share|improve this answer
thank you for your extra information. just wondering in what situation do we need to reference check on (Integer == Integer)? Shouldn't we all always just need the value check? So why doesn't someone overload the operator '==' on Integer? – GaryX Oct 24 '11 at 2:40

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.