Originally posted by Shiva Mohan:
Thanks for the reply Keith. In declaration of a3 is an three-dimensional array.Right?
In the statement a3[0][1]=a2;here a3 is two-dimensional array.How come a3 is one-dimensional.Please explain
a3 is "three-dimensional". a2 is "two-dimension". And a3[0][1] is one dimensional.
Henry
PS... I place the number of arrays in quotes, because technically,
Java supports arrays of arrays -- not multidimensional arrays. (but for this debate, it's an okay interpretation.)