为了账号安全,请及时绑定邮箱和手机立即绑定

判断字符串是否null

String str = "";

str=null;

if(str!=null && !str.equals(""))

{

System.out.println("字符串不等于空");

}

else

{

System.out.println("字符串等于空");

}

当判断条件改为if(!str.equals("") && str!=null) 的时候就是换了前后的位置就会报java.lang.NullPointerException 异常 这是为什么

正在回答

举报

0/150
提交
取消

判断字符串是否null

我要回答 关注问题
意见反馈 帮助中心 APP下载
官方微信