我的問題是這樣的如何在while循環填充數組列表
Scanner sf = new Scanner(f);
ArrayList<String> teamArr = new ArrayList<String>();
int counterPopulate = 0;
while(sf.hasNextLine()){
teamArr[counterPopulate] = sf.nextLine();
counterPopulate++;
}
的任何解決方案,這是一個嘗試捕捉包圍。 獲取問題,在這部分teamArr[counterPopulate] = sf.nextLine();
語言是什麼呢? –
因爲'字符串'是大寫的,它看起來像java –
你得到一個'索引越界'異常嗎?如果沒有,你會得到什麼例外 –