java 字符串为null 如何判断

2024-11-26 22:45:48
推荐回答(1个)
回答1:

public static void main(String[] args) throws IOException{
String str = null;
if(str == null){
System.out.println("null");
}else{
System.out.println("not null");
}
}
希望采纳 谢谢