在程序的开发过程中,经常会遇到判断String为空的情况,常用的写法为先判断是否为对象然后判断是否为空。
public class StringUtil {
public static void main(String args[]){
String str=null;
checkString(str);
}
public static void checkString(String str){
if(str==null || str.length()<=0){
System.out.println("string为空!");
}
if(str != null && str.length()!= 0){
System.out.println("String不为空!");
}
}
}