我需要一个返回对象数组的方法。下面是我的代码,但我得到空指针异常,不知道为什么。
public Place[] getPlaces()
{
Place result[] = null ;
int counter = 0;
try {
PreparedStatement ps = this.db.prepareStatement("select * from places");
ResultSet rs = ps.executeQuery();
while(rs.next()) {
Place p = new Place();
p.setPlaceID(rs.getInt("placeID"));
p.setPlaceName(rs.getString("placeName"));
result[counter] = p;
counter++;
}
} catch (Exception e) {
e.printStackTrace();
}
return result;
}
在线result[counter] = p;
日食说:
此行有多个标记 - 空指针访问:变量结果在此位置只能为空
所以,我@SuppressWarnings("null")
在我的方法之前添加了。但是,当方法被调用时,它会抛出空指针异常。在我遇到问题的行之前,尝试打印存储在 db 中的地名并且它有效。因此,这不是数据库问题,因为错误输出显示:
java.lang.NullPointerException
at PlaceMod.getPlaces(PlaceMod.java:29)
at PlaceCont.list(PlaceCont.java:15)
at Main.main(Main.java:14)
这段代码有什么问题?