Content deleted Content added
Line 93:
* All array classes descend from the class <code>Object</code>, and mirror the hierarchy of the classes they contain.
* Array classes have a read-only <code>length</code> attribute that contains the number of elements in the array.
* Array size is not used until runtime, so size maybe a variable rather than a literal.
* Java arrays have a single dimension; support for mutli-dimension arrays is provided by the language, but multi-dimension arrays are implemented as arrays of arrays.
|