例: if(username.equals(“zxx”){} username可能会产生NULL值,有可能会报空指针异常。所以改为 "zxx".equals(username) 判断同样成立并且避免产生空指针异常。