我對數組有點困惑,並希望有人能幫助我。數組返回空值
我希望這是有道理的,因爲我有點困惑。任何幫助深表感謝!
while循環創建類的對象「聯盟」
while (lineScanner.hasNextLine())
{
currentLine = lineScanner.nextLine();
String[] newSSs = currentLine.split(",");
Team team = new Team(newSS[0]);
team.setWins(Integer.valueOf(newSS[1]));
team.setDraws(Integer.valueOf(newSS[2]));
team.setLoses(Integer.valueOf(newSS[3]));
team.setPoints(team.calculatePoints());
我太有點迷茫......在哪裏你的代碼中的'ArrayList's? – davide
你能發表更多的代碼嗎?從你發佈的代碼中發現問題並不明確。我在該代碼中看不到ArrayList。 – Eran
我仍然沒有看到'ArrayList' ...我認爲你應該發佈更多的'League.class'(並且很可能是你的while循環周圍的東西) – davide