vote up 0 vote down star

So in C#, I can treat a string[] as an IEnumerable<string>.

Is there a Java equivalent?

flag

4 Answers

vote up 1 vote down check

Iterable<String> is the equivalent of IEnumerable<string>.

It would be an odditity in the type system if arrays implemented Iterable. String[] is an instance of Object[], but Iterable<String> is not an Iterable<Object>. Classes and interfaces cannot multiply implement the same generic interface with different generic arguments.

String[] will work just like an Iterable in the enhanced for loop.

String[] can easily be turned into an Iterable:

Iterable<String> strs = java.util.Arrays.asList(strArray);

Prefer collections over arrays (for non-primitives anyway). Arrays of reference types are a bit odd, and are rarely needed since Java 1.5.

link|flag
vote up 3 vote down

Iterable <T>

link|flag
I inserted the quote because I do not know how to escape the < char in the answer box in SO :( – Learning Dec 12 '08 at 10:24
mark that as code :) – bruno conde Dec 12 '08 at 10:25
If you highlight the piece of code and click the Code Sample toolbar button (5th one across) on the markdown editor, if will get formatted correctly. – Winston Smith Dec 12 '08 at 10:26
Alternatively, for "inline" code, just put backticks around it. I've edited your post to show that - it's just Iterable<T>. – Jon Skeet Dec 12 '08 at 10:28
vote up 3 vote down

Are you looking for Iterable<String>?

Iterable<T> <=> IEnumerable<T>
Iterator<T> <=> IEnumerator<T>
link|flag
vote up 2 vote down

I believe the Java equivalent is Iterable<String>. Although String[] doesn't implement it, you can loop over the elements anyway:

String[] strings = new String[]{"this", "that"};
for (String s : strings) {
    // do something
}

If you really need something that implements Iterable<String>, you can do this:

String[] strings = new String[]{"this", "that"};
Iterable<String> stringIterable = Arrays.asList(strings);
link|flag

Your Answer

Get an OpenID
or

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