本帖最后由 小蚊子 于 2013-12-20 22:24 编辑
以下代码在运行时,12行抛出了空指针异常??
1.public class Item {
2.
3. private Integer id;
4.
5. public Integer getId() {
6. return id;
7. }
8. }
9.
10. public int getInt(Item item) {
11. if (item != null) {
12. return item.getId();
13. } else {
14. return 0;
15. }
16. }
|