开发者

Why array values in java is stored in heap?

Programing languages like C,C++ will not sto开发者_运维百科re array values in Heap rather it keeps the value in STACK. But in Java why there is a necessity to keep array values in heap?


In Java, arrays (just like all other objects) are passed around by reference: When you pass an array to a method, it will get a reference pointing to the same location in memory, no copy is being made. This means that the array needs to remain "alive" after the method that created it, and so cannot be stored in the stack frame for the method. It needs to managed by the garbage collector, just like all other objects.

There is some research going in to optimize JVM memory allocation using "escape analysis": If an object (such as an array) can be guaranteed to never leave the current scope, it becomes possible to in fact allocate it on the stack, which is more efficient.


A short answer is that an array in Java is a reference type, and reference types live on the heap. It's worth noting that in C#, one can switch to unsafe mode and initialise arrays with stackalloc which will create the array on the stack. It's therefore quite probable that the VM would allow you to make an array on the stack, and it's merely an implementation detail that means arrays all live on the heap.


int[]a={10,20,30};

this array stores on stack, but the following array stores in heap:

`int[]num=new int num[2];`//here we build the object of array , object always located in heap

always treat arrays like java object, so do not be confused by the fact that arrays don't store on ram when we have a declaration like the one above.

0

上一篇:

下一篇:

精彩评论

暂无评论...
验证码 换一张
取 消

最新问答

问答排行榜