如果在Bingo中声明

时间:2013-10-21 00:54:25

标签: java if-statement jtextfield

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

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

但它不起作用 反正有没有实际做我想做的事情?

1 个答案:

答案 0 :(得分: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
}