String 判空 优雅写法
时间: 2023-07-08 12:08:26 浏览: 103
String判空工具类,可批量判空
可以使用以下代码判断一个字符串是否为空:
```java
if (str == null || str.trim().isEmpty()) {
// 字符串为空
} else {
// 字符串不为空
}
```
其中,`str == null` 用于判断字符串是否为 null,`str.trim().isEmpty()` 用于判断字符串去除首尾空格后是否为空。这种写法简洁明了,也比较优雅。
阅读全文