我需要有关如何在 java 中返回布尔方法的帮助。这是示例代码:
public boolean verifyPwd(){
if (!(pword.equals(pwdRetypePwd.getText()))){
txtaError.setEditable(true);
txtaError.setText("*Password didn't match!");
txtaError.setForeground(Color.red);
txtaError.setEditable(false);
}
else {
addNewUser();
}
return //what?
}
每当我verifyPwd()
想调用该方法时,我都希望返回 true 或 false 的值。我想这样调用该方法:
if (verifyPwd()==true){
//do task
}
else {
//do task
}
如何设置该方法的值?