【判断为空你还在用!=null】StringUtils.isNotEmpty和is not empty和!= null 什么时候用哪个?

一。《最常用!=null》

一个对象如果有可能是null的话,首先要做的就是判断是否为null:object == null,否则就有可能会出现空指针异常,这个通常是我们在进行数据库的查询操作时,查询结果首先用object != null,进行非空判断,然后再进行其他的业务逻辑,这样可以避免出现空指针异常。

二。isEmpty()

https://blog.csdn.net/linmengmeng_1314/article/details/86085314
这个博客采集:
isEmpty() 此方法可以使用于字符串,数组,集合都可以用。
首先看一下源码:

public boolean isEmpty() {
return value.length == 0; }

这里是一个对象的长度,使用这个方法,首先要排除对象不为null,否则当对象为null时,调用isEmpty方法就会报空指针了。

要想返回true,也就是一个对象的长度为0,也就是说首先这个对象肯定不为null了,内容为空时,才能返回true。

三。StringUtils:isNotEmpty、isNotBlank

null:
指一个字符串没有初始化,没有指向任何对象
empty:
空串 string str=“”

isNotEmpty:不为空串
Checks if a String is not empty (“”) and not null.

 * <pre>
 * StringUtils.isNotEmpty(null)      = false
 * StringUtils.isNotEmpty("")        = false
 * StringUtils.isNotEmpty(" ")       = true     多个空格也不是空串
 * StringUtils.isNotEmpty("bob")     = true
 * StringUtils.isNotEmpty("  bob  ") = true
 * </pre>

isNotBlank:内容不为空,不为空白
Checks if a String is not empty (“”), not null and not whitespace only.

 * StringUtils.isNotBlank(null)      = false
 * StringUtils.isNotBlank("")        = false
 * StringUtils.isNotBlank(" ")       = false    即使有多个空格,也属于空白串
 * StringUtils.isNotBlank("bob")     = true
 * StringUtils.isNotBlank("  bob  ") = true

你可能感兴趣的:(字符转换)