I've got java.lang.ArrayIndexOutOfBoundsException: null
exception in my application two times, both of them happened at list.get()
method, the JDK source like this
`private E get(Object[] paramArrayOfObject, int paramInt)
{
return paramArrayOfObject[paramInt];
}
`
What's the problem?
please give some simple example which throws java.lang.ArrayIndexOutOfBoundsException null.
Thanks!