-3

我有一个宾果游戏,当你的筹码与板上的数字匹配时,JTextfield 会变为黄色所以对于我的 BINGO 声明,我写了

                    if (B1.setBackground(Color.YELLOW) && I1.setBackground(Color.YELLOW)...){
                        System.out.println("BINGO");
                    }

但它不工作无论如何有没有真正做我想做的事?

4

1 回答 1

0

你的代码结构应该是:

if (a chip matches a number on the board) {
   set background color for JTextfield to yellow;
   System.out.println("BINGO"); // <---- if this what you require
}
于 2013-10-21T01:00:10.720 回答