我创建了一个大小为 45 的数组列表。由于某种原因,我收到了 ArrayOutOfBoundException。
这是我收到错误的地方:
String temp;
Scanner sc = new Scanner(str1);
while(sc.hasNext())
{
temp = sc.next();
int len = temp.length();
if(len > 0)
wordsByLen[len - 1].add(temp); //throwing the error here with exception of 59
}
预先感谢您的帮助!