//索引越界异常 IndexOutOfBoundsException //数组索引越界异常 ArrayIndexOutOfBoundsException //字符串索引越界异常 ArrayIndexOutOfBoundsException
没有元素异常
NoSuchElementException
//避免 没有元素异常
if (!list.isEmpty()) {
//操作集合
}

//索引越界异常 IndexOutOfBoundsException //数组索引越界异常 ArrayIndexOutOfBoundsException //字符串索引越界异常 ArrayIndexOutOfBoundsException
没有元素异常
NoSuchElementException
//避免 没有元素异常
if (!list.isEmpty()) {
//操作集合
}