/*
boolean isEmpty():
判断字符串是不是空串,
如果是空的就返回true
*/
public class Str {
public static void main(String[] args) {
// 定义空字符串
String s="";
// 判断是否为空
boolean e=s.isEmpty();
// 打印
System.out.println(e);
}
}