From looking at the Java Collections API i see that arrays are not regarded as collections. If not what are arrays regarded as?
Tell me more
×
Stack Overflow is a question and answer site for
professional and enthusiast programmers. It's 100% free, no registration required.
|
|
Arrays are "special" in Java - they don't implement any interfaces, which means they can't implement the collection interfaces. They're collections in "natural language" terms, and you can use the enhanced for loop over them - but if you want to use an array within the collection API, you'll need something like (This is in contrast to .NET, where |
|||||||
|