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

Where does the Java JVM store primitive variables, and how is the memory used by primitives freed after use?

I guess it is on the stack?

share|improve this question

2 Answers

Simplistic answer: it depends on where the variable is declared, not on its type.

Local variables are stored on the stack. Instance and static variables are stored on the heap.

Don't forget that for reference type variables, the value of a variable is a reference, not the object. (Arrays are reference types too - so if you have an int[], the values will be on the heap.)

Now, this is potentially an overly simplistic answer, because a smart VM may be able to detect if a particular reference type variable refers to an object which can never "escape" the current method. If that's the case, it could potentially inline the whole object on the stack.

But conceptually this model is accurate. So a variable of type int which is declared as an instance variable like this:

class Foo
{
    private int value;
    ...
}

will conceptually live on the heap, as part of the data of any instance of Foo. It will be freed as part of freeing the instance - it's just 4 bytes within the block of data representing a Foo instance; it doesn't need separate deallocation.

share|improve this answer
Isn't java treats primitive & non-primitive variable's differently? – JRomio Sep 13 '10 at 6:10
Also array contents are in the heap. I would say "local variables except for captured variables" but I just read your article on the different between Java and C# closures and I guess there's no such thing as a captured variable in Java. In C# it would be on for stack for local variables, unless captured, and members of value types which are on the stack, and on the heap for array contents and members of reference types. – Ben Voigt Sep 13 '10 at 6:10
@Ben: Yes, will add that about arrays, although it's already covered, strictly speaking, as arrays are reference types. In C# you'd also need to cover local variables in iterator blocks, which will be on the heap too. – Jon Skeet Sep 13 '10 at 6:12
1  
@JRomio: All local variables are either a built-in type or a handle (which Java calls a reference, but it's really a pointer at heart) to a user-defined type, both of which are primitive. Only the pointed-to UDT is non-primitive, but that's distinct from the variable holding the handle. – Ben Voigt Sep 13 '10 at 6:12
2  
@Ben: In that case I wouldn't call it a variable at all. I didn't state that everything in the heap is an instance or static variable. Anyway, it's definitely better after clarification, so thanks :) @Rakesh: Yes, arrays are reference types. Did you think the entire contents of the array was copied every time you performed an assignment? – Jon Skeet Sep 13 '10 at 6:31
show 2 more comments
  • Class objects, including method code and static fields: heap.
  • Objects, including instance fields: heap.
  • Local variables and calls to methods: stack..
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.