为什么这条线会给我一个 NullPointerException?
List<Comment> commentList = commentDAO.getComments();
getComments() 方法确实返回了一个列表,但是当我在 Eclipse 中单步执行代码时,甚至没有调用该方法。
为什么这条线会给我一个 NullPointerException?
List<Comment> commentList = commentDAO.getComments();
getComments() 方法确实返回了一个列表,但是当我在 Eclipse 中单步执行代码时,甚至没有调用该方法。