I often use an ArrayList instead of a \'normal\' array[].
ArrayList
array[]
I feel as if I am cheating (or being lazy) when I use an ArrayList,
If you need an array of primitive types use Array for better performance as it will avoid autoboxing and unboxing. But only if you know the size you want ahead of time.