检查“索引越界”的最佳实践和解决方案是什么以下解决方案有效,但感觉很hacky。有没有更好的选择?
public void nextPerson(int index){ //Index is the current location in the arraylist
try{
System.out.println(thePeople.get(index++));
}
catch (IndexOutOfBoundsException e){
System.out.println("At the end");
}
}