list - java代码优化
问题描述
现在的能跑,但是肯定写的不好。
List<? extends WeatherData> data = weatherReportDao.getCoviReportData(reportType);WeatherENUM weatherENUM = WeatherENUM.valueOf(reportFunction);switch (weatherENUM){ case atmosphere:data = atmosphereReportDao.getAtmosphereReportData(reportType);break; case covi: data = weatherReportDao.getCoviReportData(reportType);break; case windSpeed:data = windSpeedReportDao.getWindSpeedReportData(reportType);break;}return data;
关键就是data的初始化,不初始化会报错。求指导。
问题解答
回答1:List<? extends WeatherData> data = null;
或者想办法把weatherENUM的某个值当作参数传到dao
List<? extends WeatherData> data = weatherReportDao.getReportData(reportType,dataType);回答2:
定义成全局量就不用初始化了。
相关文章:
1. 前端 - 集思广益,如何用CSS实现数字上面有一个点2. css3 让图片变成灰色(filter),但针对IE11浏览器无效3. html5 - 前端面试碰到了一个缓存数据的问题,来论坛上请教一下4. macos - 无法source activate python275. 我在导入模板资源时遇到无法显示的问题,请老师解答下6. css - 移动端 盒子内加overflow-y:scroll后 字体会变大7. PHPExcel表格导入数据库怎么导入8. java - butterknife怎么绑定多个view9. 运行python程序时出现“应用程序发生异常”的内存错误?10. java - 同步/异步与阻塞/非阻塞之间的差异具体是什么?

网公网安备