if(spec.getVolumeSpecs() == null || spec.getVolumeSpecs().size() ==0 || spec.getVolumeSpecs().get(0) == null || spec.getVolumeSpecs().get(0).getPrimaryStorageInventory() == null){
return;
}
1
letitbesqzr 2017-05-09 21:01:59 +08:00
前两个判断随便找个工具类:
spec.getVolumeSpecs() == null || spec.getVolumeSpecs().size() ==0 ->CollectionUtil.isEmpty(spec.getVolumeSpecs()) spec.getVolumeSpecs().get(0) == null 没有意义 spec.getVolumeSpecs().get(0).getPrimaryStorageInventory() == null 看你业务是否有这个必要 |
2
SoloCompany 2017-05-09 21:58:04 +08:00 via iPhone
?语法糖的最佳使用场景
只不过 java 没有😏 |
3
Adia OP @SoloCompany 请问什么语言有?
|
4
Michaelssss 2017-05-15 17:21:10 +08:00
。。。。。。。这个时候不就是自己写个 Utils 的最佳实践么。。。
|
5
UncleRiver 2017-05-17 15:48:03 +08:00
|
6
sonyxperia 2017-05-18 17:13:26 +08:00
写个通用的 util
抽取成一个方法 |