Iterator<T> i = c.iterator();
while (i.hasNext()) {
    T x = i.next();
    //...body....
}
