IN JAVA
Is there a maximum size of char[]? Can I have a char[5,000,000]?
Is array in java composed of contiguous memory blocks?
|
IN JAVA Is there a maximum size of char[]? Can I have a char[5,000,000]? Is array in java composed of contiguous memory blocks? |
||||
|
Since the index is int based the maximum size of an array should be Integer.MAX_VALUE Obviously the other limit is the amount of memory available to your application :) |
|||||||
|
|
Maximum size depends on the architecture. In C, an array consists in contiguous memory blocks. You can have an array as big as you want, as long as it fits in RAM (including disk-based virtual memory). There is an exception: arrays declared as local variables are allocated on the stack, which is quite small. The typical size for the stack in a multi-threaded application on a PC will be 1 megabyte. If you want a big array, you'd better create it as a global variable, or allocate it dynamically (with In Java, arrays are heap-allocated (with |
|||
|
|
|
heap size of JVM is the limit. as @wildcodeforjava mentioned int is the paremeter while initilizing array so which ever is less. |
||||
|
|
|
Yes, and yes as far as I know, I think the max in java is around 2,000,000,000 2*10e9 |
|||
|
|
Integer.MAX_VALUE - 5. – ColinD Nov 30 '10 at 16:39