| Author |
Objects created on Heap
|
ramya ray
Ranch Hand
Joined: Aug 11, 2006
Posts: 101
|
|
Please explain how many objects are created on heap in a multi dimension array. for eg: int [][]a = new int[3][]; //how many objects will be created on heap? and for int [][]a = new int[3][5]; //how many objects will be created on heap? Please explain. Thanks.
|
 |
Scott Johnson
Ranch Hand
Joined: Aug 24, 2005
Posts: 518
|
|
1 (A single array is created. That array is an object stored on the heap. The array has three null references.) 4 (An array with references to three other arrays. Each array is an object on the heap.)
|
 |
ramya ray
Ranch Hand
Joined: Aug 11, 2006
Posts: 101
|
|
Thanks a lot for replying ,I got it
|
 |
 |
|
|
subject: Objects created on Heap
|
|
|