This is the usual way for declare a Java array:
int[] arr = new int[100];
But this array is using heap space. Is there a way we can declare an array using stack space like c++?
|
|
In a word, no. The only variables that are stored on the stack are primitives and object references. In your example, the If you're asking this question coming from C++ because you want to be sure your memory is cleaned up, read about garbage collection. In short, Java automatically takes care of cleaning up memory in the heap as well as memory on the stack. |
|||
|
|
Arrays are dynamically allocated so they go on the heap. I mean, what happens when you do this:
If the first allocation was done on the stack, how would we garbage collect it? The reference |
|||
|
|
|
|
|||
|
|