在Java中,可以使用以下几种方式来判断变量是否为空:
String str = null;
if (str == null) {
System.out.println("变量为空");
} else {
System.out.println("变量不为空");
}
String str = null;
if (Objects.isNull(str)) {
System.out.println("变量为空");
} else {
System.out.println("变量不为空");
}
String str = "";
if (StringUtils.isEmpty(str)) {
System.out.println("变量为空");
} else {
System.out.println("变量不为空");
}
Optional<String> optional = Optional.ofNullable(null);
if (!optional.isPresent()) {
System.out.println("变量为空");
} else {
System.out.println("变量不为空");
}
这些方法可以根据不同情况来判断变量是否为空,并采取相应的处理方式。