elementData = Arrays.copyOf(elementData, newCapacity);
Gives error:
The method copyOf(Object[], int) is undefined for the type Arrays
This was not a problem on my home computer, but at my school’s it gives the error above. I’m guessing it’s running an older JRE version – any workaround?
Arrays.copyOf()was introduced in 1.6.You’d need to create a new array of the size you need and copy the contents of the old array into it.
From: http://www.source-code.biz/snippets/java/3.htm