TipoEstablecimientoHotel

TipoEstablecimientoHotel

我有下一个代码:

ResultSet rs= null;
TipoEstablecimientoHotel tipoEstablecimiento = new TipoEstablecimientoHotel(rs);


当然,第二行进入空指针异常,因此我想初始化tha“ rs”,但是我现在不希望数据来自数据库。我迷路了。

最佳答案

我们不知道TipoEstablecimientoHotel的作用,也不知道为什么需要结果集。如果在构造时需要它,则您需要推迟构造TipoEstablecimientoHotel直到获得结果,或者需要重新设计它以便以后提供数据。

基本上,应该将此类问题作为建议,以退后一步来考虑您的设计-考虑何时需要哪些数据,并调整设计以满足这些需求。

10-05 21:24