0
Q:

android foreach

for (Iterator<Object> i = map.values().iterator(); i.hasNext(); ) {
    Object object = i.next();
    // do something with object
}
0
for (Object object : aList) {
    // do something with object
}
0

New to Communities?

Join the community