提示:您可在线编辑运行本教程的实例 - 运行实例,去试试!
如何检查给定的字符串是否为空
/**来自 NowJava.com - 时 代 Java**/ public class Main { public static void main(String args[]){ String str1 = ""; String str2 = null; String str3 = "Hello World"; System.out.println("Is String 1 empty? :" + str1.isEmpty()); System.out.println("Is String 3 empty? :" + str3.isEmpty()); } }