My question is very basic, but I didn't find an answer on a Google search.
In Java, what is the maximum size a String object may have, referring to the length() method call?
I know that length() return the size of a String as a char [ ]
|
|
|
Considering the In terms of lengths and indexing of arrays, (such as
Furthermore, the indexing must be by
Therefore, it appears that the limit is indeed However, there probably are going to be other limitations, such as the maximum allocatable size for an array. |
|||||||||||||||||
|
|
Since arrays must be indexed with integers, the maximum length of an array is |
||||
|
|