假设我有一个布尔方法,它使用if语句来检查返回类型是true还是false:
public boolean isValid() {
boolean check;
int number = 5;
if (number > 4){
check = true;
} else {
check = false;
}
return check;
现在,我想将此方法用作不同方法中if语句的参数:
if(isValid == true) // <-- this is where I'm not sure
//stop and go back to the beginning of the program
else
//continue on with the program
所以基本上我要问的是,我如何检查 if 语句的参数中布尔方法的返回类型是什么?非常感谢您的回答。