This may be a stupid question but here it is. So you can set the initial size for an array list by doing
ArrayList<Integer> arr=new ArrayList<Integer>(10);
However you cant do (causes an out of bounds exception)
arr.add(5, 10);
So my question is what is the use of setting an initial size then if you cant access the space you allocated ?
UPDATE: The add function is defined as add(int index, Object element) so I am not adding to index 10.

set/additem n-1. – Perception Jan 17 '12 at 15:17ArrayList. I, personally, would like a method that would allow me to set a size such that I could put things in at specific indices. This method seems notably absent. – Andrew Wyld May 23 '12 at 17:31