ArrayIterator
provides an Iterator
over a Java array. ArrayIterator
will return each element in the array in the order they are stored in the array. Multidimensional arrays are handled by returning a sequence of sub-arrays. So a three dimensional array of integers will return a sequence of two dimensional arrays of integers. This Iterator
does not support the remove()
method.
|
|
|
|
|
|
|
|