我只是想知道是否可以在尝试修复此公共布尔方法时提供一些帮助,我无法编译此代码,请谁能告诉我哪里出错了?谢谢
//这是正确编译之前的方法,但下一个布尔方法与此相反,发生错误。
public void uncover(int thisCol, int thisRow) {
if (areIndexesValid(thisCol, thisRow)) {
is_hidden[thisCol][thisRow] = false;
}
}
//这是需要修复的布尔值。
public boolean isCovered(int thisCol, int thisRow) {
// TODO check the indexes. If not valid, then return false else return
if (areIndexesValid(thisCol, thisRow)) {
return is_hidden[thisCol][thisRow]
else
return false
}
}