vote up 5 vote down star

Why does the Iterator interface not extend extend Iterable?

The iterator() method could simply return 'this'.

Is it on purpose or just an oversight of Java's designers?

It would be convenient to be able to use a for-each loop with iterators like this:

for(Object o : someContainer.listSomObjects()) {
....
}

where listSomeObject returns an iterator.

flag

63% accept rate
OK - I see your point buut . it would still be convenient even if it broke a semantics a little :] Thank U for all the answers :] – lbownik May 8 at 10:53

4 Answers

vote up 10 vote down check

Because an iterator generally points to a single instance in a collection. Iterable implys that one may obtain an iterator from an object to traverse over its elements - and there's no need to iterate over a single instance, which is what an iterator represents.

link|flag
4  
+1: A collection is iterable. An iterator is not iterable because it's not a collection. – S.Lott May 8 at 10:26
vote up 17 vote down

An iterator is stateful. The idea is that if you call Iterable.iterator() twice you'll get independent iterators. That clearly wouldn't be the case in your scenario.

For example, I can usually write:

public void iterateOver(Iterable<String> strings)
{
    for (String x : strings)
    {
         System.out.println(x);
    }
    for (String x : strings)
    {
         System.out.println(x);
    }
}

That should print the collection twice - but with your scheme the second loop would always terminate instantly.

link|flag
I think that you have confused in with :, in C# :) – dfa May 8 at 10:28
Doh, thanks. Mind you, I was only half there - I didn't call it foreach. – Jon Skeet May 8 at 10:29
vote up 3 vote down

An Iterable is a thing from which you obtain an Iterator.

link|flag
Exactly. Iterable is a factory method for Iterators. See also stackoverflow.com/questions/27240/… – sylvarking May 8 at 14:58
vote up 1 vote down

For the sake of simplicity, Iterator and Iterable are two distinct concepts, Iterable is simply a shorthand for "I can return an Iterator". I think that your code should be:

for(Object o : someContainer) {
}

with someContainer instanceof SomeContainer extends Iterable<Object>

link|flag

Your Answer

Get an OpenID
or

Not the answer you're looking for? Browse other questions tagged or ask your own question.