import java.util.ArrayList;
public class Averager {
private ArrayList list;
public Averager() {
list = new ArrayList();
}
public void addGrades(int test, int quiz) {
list.add(new Integer(test));
list.add(new Integer(test));
list.add(new Integer(quiz));
}
public double getAverage() {
int sum = 0;
for(int i = 0; i < list.size(); i++) {
sum += ((Integer)list.get(i)).getValue();
}
return sum/list.size();
}
}
0
A
回答
1
Integer類沒有辦法的getValue
3
Integer類不具備的getValue()方法。有intValue()方法。但是,對於算術運算,你甚至不必把它叫做 - Java將做autoboxing:
sum += (Integer)list.get(i);
0
sum += ((Integer)list.get(i)).intValue();
或
sum += ((Integer)list.get(i));
或
sum += (Integer.parseInt((list.get(i)).toString()));
相關問題
- 1. Android Studio中的「error:can not find symbol method」
- 2. 「Can not find symbol class keyboard reader」 - JCreator
- 3. Java錯誤'error:can not find symbol'
- 4. Rspec - Formatter'specdoc'unknown - 也許你的意思是'文檔'
- 5. MissingSchema:URL'/'無效:未提供架構。也許你的意思是http:///?
- 6. 什麼意思是「(?symbol?name)」?
- 7. error:expected';',','or')''''token .. but can not find?
- 8. Rails tests can not find test_helper
- 9. Sublime Text 2 Make not working,can not find latex
- 10. ruby中的「class#method」是什麼意思?
- 11. Android BLE .getValue()輸出是什麼意思?
- 12. 爲什麼我導入一些java源文件時出現「error can not find symbol」?
- 13. Perl錯誤「Can not locate Net/SSH/Perl.pm」是什麼意思?
- 14. visual studio 2008 moc can not find mainwindow.h
- 15. Can not find CSS to center my wordpress lightboxes
- 16. tcl錯誤「can not find struct struct :: tree」
- 17. Method =「put document:12.0.0.4518」是什麼意思?
- 18. def method(parameter = None)是什麼意思?
- 19. {} \是什麼意思? in find -exec sed
- 20. util.Random symbol not found
- 21. _IMAGE_DOS_HEADER symbol not found
- 22. 「你的意思是?」功能Lucene.net
- 23. 未知recieiver'indexPath'l你的意思是NSIndexPath?
- 24. C#搜索「你的意思是」功能
- 25. 你的意思是在CSS #classname
- 26. 爲什麼IntelliJ IDEA會爲spark.sparkContext.textFile聲明「Can not resolve symbol spark」?
- 27. 「你的意思」在git
- 28. Can not screen scrape
- 29. Try and catch method,python,indentation error can not put it out
- 30. can not can cancan on rails 3.1
你甚至不給爲你調用intValue,java auto-unboxes ints。它也會自動包裝它們,所以不需要新的Integer。 – KitsuneYMG 2011-01-26 04:49:03