Tell me more ×
Facebook - Stack Overflow is a question and answer site for facebook developers. It's 100% free, no registration required.
Facebook and Stack Exchange are now working together to support the Facebook developer community. Facebook engineers participate here along with the best Facebook developers in the world. If you have a technical question about Facebook, this is the best place to ask.

If I declare some string variable like

String str = null; 
  • Is there memory allocated for variable str?
  • If allocated, how many bytes will be allocated?
  • If not allocated, how does the JVM know that there is some variable called str been declared?
  • If allocated and if there is null value inside the memory, then what exactly is the representation of null in binary?
share|improve this question
possible duplicate of What is null in Java? – dthorpe Nov 30 '11 at 5:45

5 Answers

When you do something like:

String str = null;

The only thing allocated is a reference to a string (this is analogous to a string-pointer in languages which contain pointer-types). This reference is a 32 or 64 bit variable (depending upon your hardware architecture and Java version) which resides on the stack (probably, depending upon the exact context in which your declaration is placed).

No memory should be allocated for the null itself, because null is not actually a valid object instance. It is simply a placeholder that indicates that the object reference is not currently referring to an object. Probably it is simply the literal value 0, such that assigning an object reference to null is equivalent to setting a pointer type to NULL in C/C++. But that last bit is conjecture on my part.

share|improve this answer

Null is the value of a reference that is not bound to an object.

Space is allocated for the reference variable itself, regardless of its value. Null is merely a value that fits within this space.

To answer each question for the specific example.

  • Yes, there is space allocated for the variable str.
  • The size of the memory allocated for the reference variable is probably four bytes.
  • It is allocated, and the JVM follows the instructions of the compiled code to access it.
  • It doesn't matter.
share|improve this answer

Take a look at this Java IAQ (infrequently asked question) "Is null an object?".

To answer your questions:

  • Only memory to store the reference is allocated
  • The java standard doesn't specify how much memory a reference takes up (although, in practice it is usually 32 or 64 bits depending on your JVM - although some JVMs try to beat this)
  • The memory representation of null doesn't matter, since you can't do bit level operations on it (or assign it to anything that isn't a reference)
share|improve this answer

Java works on references. Think of String str=null as you have pointer in C, but not exactly pointer.

Now internal representation dependes upon the JVM. It is not easy to calculate the size of reference. The implementation differs per JVM so there is no point extracting that low level info.

share|improve this answer

After doing this line:

String str = null; // or String str;

Only a reference of type String is allocated into the stack. null means that you don't assign any value (object) to the reference str into the heap.

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.