Java中检查字符串是否为空的程序
给定一个字符串str,任务是检查这个字符串是否为空,在Java中。
例子:
Input: str = ""
Output: True
Input: str = "GFG"
Output: False
方法:
- 获取要在 str 中检查的字符串
- 我们可以使用 String 类的 isEmpty() 方法简单地检查字符串是否为空
句法:if (str.isEmpty())
- 如果上述条件为真,则打印真。否则打印错误。
下面是上述方法的实现:
// Java Program to check if
// the String is empty in Java
class GFG {
// Function to check if the String is empty
public static boolean isStringEmpty(String str)
{
// check if the string is empty or not
// using the isEmpty() method
// and return the result
if (str.isEmpty())
return true;
else
return false;
}
// Driver code
public static void main(String[] args)
{
String str1 = "GeeksforGeeks";
String str2 = "";
System.out.println("Is string \"" + str1
+ "\" empty? "
+ isStringEmpty(str1));
System.out.println("Is string \"" + str2
+ "\" empty? "
+ isStringEmpty(str2));
}
}
输出:
Is string "GeeksforGeeks" empty? false
Is string "" empty? true