Is there a limit to the number of elements a Java array can contain? If so, what is it?
|
|
Haven't seen the right answer, even though it's very easy to test. In a recent HotSpot VM, the correct answer is
You get:
|
|||||||||||||||||||
|
|
Some VMs reserve some header words in an array. The maximum "safe" number would be If you have the source code for the java classes, checkout java.util.ArrayList.class (line 190):
|
|||
|
|
|
There are actually two limits. One, the maximum element indexable for the array and, two, the amount of memory available to your application. Depending on the amount of memory available and the amount used by other data structures, you may hit the memory limit before you reach the maximum addressable array element. |
|||
|
|