📜  Java中检查字符串是否为空的程序

📅  最后修改于: 2022-05-13 01:55:35.819000             🧑  作者: Mango

Java中检查字符串是否为空的程序

给定一个字符串str,任务是检查这个字符串是否为空,在Java中。

例子:

Input: str = null 
Output: True

Input: str = "GFG"
Output: False

方法:

  • 获取要在 str 中检查的字符串
  • 我们可以使用 == 关系运算符简单地将字符串与 Null 进行比较。
    句法:
    if(str == null)
    
  • 如果上述条件为真,则打印真。否则打印错误。

下面是上述方法的实现:

// Java Program to check if
// the String is Null in Java
  
class GFG {
  
    // Function to check if the String is Null
    public static boolean isStringNull(String str)
    {
  
        // Compare the string with null
        // using == relational operator
        // and return the result
        if (str == null)
            return true;
        else
            return false;
    }
  
    // Driver code
    public static void main(String[] args)
    {
        String str1 = "GeeksforGeeks";
        String str2 = null;
  
        System.out.println("Is string [" + str1
                           + "] null? "
                           + isStringNull(str1));
        System.out.println("Is string [" + str2
                           + "] null? "
                           + isStringNull(str2));
    }
}
输出:
Is string [GeeksforGeeks] null? false
Is string [null] null? true