共计 643 个字符,预计需要花费 2 分钟才能阅读完成。
在 Java 中,可以使用以下几种方式来判断变量是否为空:
- 使用 if 语句判断变量是否为 null:
String str = null;
if (str == null) {System.out.println(" 变量为空 ");
} else {System.out.println(" 变量不为空 ");
}
- 使用 Objects 类的 isNull() 方法判断变量是否为 null:
String str = null;
if (Objects.isNull(str)) {System.out.println(" 变量为空 ");
} else {System.out.println(" 变量不为空 ");
}
- 使用 StringUtils 类的 isEmpty() 方法判断字符串变量是否为空:
String str = "";
if (StringUtils.isEmpty(str)) {System.out.println(" 变量为空 ");
} else {System.out.println(" 变量不为空 ");
}
- 使用 Optional 类的 isPresent() 方法判断 Optional 变量是否为空:
Optional<String> optional = Optional.ofNullable(null);
if (!optional.isPresent()) {System.out.println(" 变量为空 ");
} else {System.out.println(" 变量不为空 ");
}
这些方法可以根据不同情况来判断变量是否为空,并采取相应的处理方式。
丸趣 TV 网 – 提供最优质的资源集合!
正文完