Java程序查找给定的字符串为空还是空

isEmpty()如果当前字符串的长度为0,则String类的方法返回true。

示例

import java.util.Scanner;

public class StringEmptyOrNull {

   public static void main(String[] args) {

      System.out.println("Enter a string value ::");

      Scanner sc = new Scanner(System.in);

      String str = sc.nextLine();

      if(str.isEmpty()&& str==null ){

         System.out.println("Given string is empty or null");

      }else{

         System.out.println("Given string is not empty or null");

      }

   }

}

输出1

Enter a string value ::

Hi welcome to nhooo

Given string is not empty or null

输出2

Enter a string value ::

Given string is empty or null

以上是 Java程序查找给定的字符串为空还是空 的全部内容, 来源链接: utcz.com/z/322298.html

回到顶部