Why can't I do:
Enumeration e = ...
for (Object o : e)
...
feedback
|
|
Because As to why that's an interesting question. This isn't exactly your question but it sheds some light on it. From the Java Collections API Design FAQ:
That basically suggests to me that Sun wants to distance themselves from Enumeration, which is very early Java with quite a verbose syntax. | |||||||||||||||||||
feedback
|
|
You could use
| |||
feedback
|
|
The new-style-for-loop ("foreach") works on arrays, and things that implement the It's also more analogous to | |||||
feedback
|
|
Because an Enumeration (and most classes derived from this interface) does not implement Iterable. You can try to write your own wrapper class. | |||
feedback
|