「インデックスが範囲外」をチェックするためのベストプラクティスと解決策は次の解決策は機能しますが、かなりハッキーな感じがします。より良い選択肢はありますか?
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");
}
}