You probably came from PHP or another programming language that has no real arrays. (An array in PHP is a kind of dictionary / hashmap)
Arrays in JAVA are fixed length.
Without a fixed length, you can use Vector. If you want to index something else besides integers from 0 to length, you can use a dictionary.
source
share