So in C#, I can treat a string[] as an IEnumerable<string>.
Is there a Java equivalent?
|
|
|
|
|
|
|
It would be an odditity in the type system if arrays implemented
Prefer collections over arrays (for non-primitives anyway). Arrays of reference types are a bit odd, and are rarely needed since Java 1.5. |
||
|
|
|
|
|
||||||||
|
|
|
Are you looking for
|
||
|
|
|
|
I believe the Java equivalent is
If you really need something that implements
|
||
|
|