我有一个井字游戏板,在检查胜利条件之前,我检查一下存储在board [] []中的对象是否为空。

例如:

if(board[0][j] == null || board[1][j] == null || board[2][j] == null)//and so on
//do something
else
  //proceed with row evaluation

最佳答案

在您的Board类中添加一个方法,例如:

public boolean hasAnyNull() {
   boolean found = false;
   for (int i = 0 ; !found && i < board.width ; i++) {
      for (int j = 0; !found && j < board.height ; j++ {
         if (board[i][j] == null) {
            found = true;
         }
      }
   }
   return found;
}


并测试if (hasAnyNull()) {...}。该方法在第一个null处返回,与您的or条件完全相同。

如果愿意,该方法可以将电路板作为参数。

关于java - 如何压缩由OR运算符组成的if语句?,我们在Stack Overflow上找到一个类似的问题:https://stackoverflow.com/questions/28702582/

10-12 05:20