文章目录
-
- 用法
- 案例
用法
使用 isEmpty()
方法使用 isEmpty() 方法可以检查字符串是否为空字符串。
String resultOne = "";
resultOne.isEmpty();//是否为空判断
案例
/**
* @description: 判断字符串是否为空
* @author: auhtor
* @date: 2024/4/26 14:38
**/
@Test
public void testDemo() {
String resultOne = "";
String resultTwo = null;
if (resultOne == null || resultOne.isEmpty()) {
System.out.println("resultOne是空");
} else {
System.out.println("resultOne非空");
}
if (resultTwo == null || resultTwo.isEmpty()) {
System.out.println("resultTwo是空");
} else {
System.out.println("resultTwo非空");
}
/**
*
* 测试结果:
* resultOne是空
* resultTwo是空
**/
}