我有一个宾果游戏,当你的筹码与棋盘上的数字匹配时,JTextfield会变黄 所以对于我写的BINGO声明
if (B1.setBackground(Color.YELLOW) && I1.setBackground(Color.YELLOW)...){
System.out.println("BINGO");
}
但它不起作用 反正有没有实际做我想做的事情?
答案 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
}