
|
If you were logged in you would be able to see more operations.
|
|
|
|
The correct way to iterate over an arbitrary array is:
int len = Array.getLength(foo);
for (int i=0; i<len; ++i) {
Object bar = Array.get(foo, i);
}
|
|
Description
|
The correct way to iterate over an arbitrary array is:
int len = Array.getLength(foo);
for (int i=0; i<len; ++i) {
Object bar = Array.get(foo, i);
}
|
Show » |
|
|