I'm new to Java and I can't figure out what the difference between String[] and Array<String> is. And how do I actually count how many entries a String[] Array has?
Thanks!
Tell me more
×
Stack Overflow is a question and answer site for
professional and enthusiast programmers. It's 100% free, no registration required.
|
|
|||
|
|||
|
|
|
Main difference: String[] is not resizable. Length of String[]: use .length property. |
|||
|
|
Array<String>? I can't find anyArray<T>class in the JDK reference, and my JDK'sjavacwon't let me compile anArray<String> foo;declaration. There'sArrayList<T>, but that's something else entirely. – T.J. Crowder Jul 12 '11 at 10:21