常用对象,在使用之前应定要做判空

时间:2021-04-04 05:19:23
//一、常用对象,在使用之前应定要做判空:
1.map
if(null!=map&&!map.isEmpty())

2.字符串
StringUtil.isNotEmpty(resultCode)

3.stringbuder
if(sub.length()>0)

4.list
if(null!=list&&!list.isEmpty())

if(null==contentList||contentList.isEmpty())

5.数组
if(null!=consultIds&&consultIds.length>0)

6.对象
if(null!=outObject&&StringUtil.isNotEmpty(outObject.getRtnCode()))