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?
|
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? |
||||
|
|
|
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 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
will conceptually live on the heap, as part of the data of any instance of |
|||||||||||||||
|
|
||||
|
|