Fangen Sie Array aus der Grenzen aus, Ausnahme Java
try {
array[index] = someValue;
}
catch(ArrayIndexOutOfBoundsException exception) {
handleTheExceptionSomehow(exception);
}
Innocent Impala