Java spring框架 工具类ObjectUtils.isEmpty()方法
在springboot项目中我们可以使用org.springframework.util.ObjectUtils**解决判断对象是否为空的问题**
ObjectUtils.isEmpty
底层实质就是和null进行比较
其源码:
public static boolean isArray(@Nullable Object obj) {
return obj != null && obj.getClass().isArray();
}
public static boolean isEmpty(@Nullable Object[] array) {
return array == null || array.length == 0;
}
public static boolean isEmpty(@Nullable Object obj) {
if (obj == null) {
return true;
} else if (obj instanceof Optional) {
return !((Optional)obj).isPresent();
} else if (obj instanceof CharSequence) {
return ((CharSequence)obj).length() == 0;
} else if (obj.getClass().isArray()) {
return Array.getLength(obj) == 0;
} else if (obj instanceof Collection) {
return ((Collection)obj).isEmpty();
} else {
return obj instanceof Map ? ((Map)obj).isEmpty() : false;
}
}
我们在写spingboot项目时就可以使用该方法来判断对象、字符串是否为空。
//判断是否有值
if(!ObjectUtils.isEmpty(status)){
wrapper.eq("status",status);
}
if (!ObjectUtils.isEmpty(title)){
wrapper.eq("title",title);
}
Integer id = courseSection.getId();
if(ObjectUtils.isEmpty(id)){//判断id的值是否为空,如果为空,则为true
// 新增
try {
courseContentService.addCourseSection(courseSection);
return AjaxResult.success();
} catch (Exception e) {
e.printStackTrace();
return AjaxResult.fail(e.getMessage());
}
}else {
// 修改
try {
courseContentService.updateCourseSection(courseSection);
return AjaxResult.success();
} catch (Exception e) {
e.printStackTrace();
return AjaxResult.fail(e.getMessage());
}
}
版权声明:本文内容由互联网用户自发贡献,该文观点仅代表作者本人。本站仅提供信息存储空间服务,不拥有所有权,不承担相关法律责任。如发现本站有涉嫌侵权/违法违规的内容, 请发送邮件至 举报,一经查实,本站将立刻删除。
文章由极客之音整理,本文链接:https://www.bmabk.com/index.php/post/85528.html