Iterable<E> is in java.lang whereas Iterator<E> is in java.util. Is there a good reason for this or is this merely an artifact of bad design?
It seems strange since the only thing that an Iterable<E> is good for is providing an Iterator<E>.
EDIT: One potential reason is because of the (then-)newly introduced for-each loop. I guess my question then would be, are they equivalent?
for(Object o : collection)
...
vs
for( Iterator iter = collection.iterator(); iter.hasNext(); ) {
o = iter.next();
...
If they are, then that still doesn't explain why the two classes are in different packages since the compiler would have to import java.util anyways to use the Iterator construct.
for (E e: iterable)does need extra imports which would be the answer of your question. – bestsss Aug 3 '11 at 22:00removemethod in theforloop is a good argument for a second Iterator interface. – Paŭlo Ebermann Aug 3 '11 at 22:12