January 2002
Intermediate to advanced
264 pages
8h 3m
English
java.lang.ArrayIndexOutOfBoundsException
This exception is identical to its J2SE counterpart. It signifies that an attempt was made to access an array with either a negative index value or an index value greater than or equal to the array size.
public classArrayIndexOutOfBoundsExceptionextends java.lang.IndexOutOfBoundsException { // constructors publicArrayIndexOutOfBoundsException(); publicArrayIndexOutOfBoundsException(int index); publicArrayIndexOutOfBoundsException(String s); }
Read now
Unlock full access