当我执行这段代码时,它会显示一个按钮网格,其中只有网格底角的按钮可以工作,而其他按钮则没有。当您单击按钮时,它将变为绿色,表示它已被选中,如果再次单击它将变为白色意味着取消选择。我想制作一个电影院座位预订系统,用户将在其中选择自己的座位。我无法弄清楚其他人为什么不工作。
任何人都可以帮助我吗?
import javax.swing.*;
import java.io.IOException;
import java.awt.image.BufferedImage;
import java.awt.*;
import java.awt.event.*;
import java.awt.Color;
import javax.swing.border.LineBorder;
import javax.swing.border.Border;
import java.awt.image.BufferedImage;
import javax.imageio.ImageIO;
import javax.swing.ImageIcon;
import java.io.File;
class cinemaSeats extends JFrame implements ActionListener {
private JButton[] bt = new JButton[1];
static int c=4;
static int k=5;
public cinemaSeats() throws IOException{
this.setSize(100, 100);
this.setLayout(null);
for(int s=0;s<=10;s++,k+=30)
{
c=4;
for(int j=1;j<=10;j++,c+=30)
{
for (int i = 0; i < bt.length; i++) {
bt[i] = new JButton("");
this.add(bt[i]);
bt[i].setBackground(Color.WHITE);
bt[i].addActionListener(this);
bt[i].setBounds(c,k,30,30);
}
}
}
this.setVisible(true);
this.pack();
this.setSize(new Dimension(3400,735));
}
public void actionPerformed(ActionEvent e) {
for (int i = 0; i < bt.length; i++) {
if (e.getSource() == bt[i]) {
if(bt[i].getBackground() == Color.GREEN){
bt[i].setBackground(Color.WHITE);
}else if(bt[i].getBackground() == Color.WHITE){
bt[i].setBackground(Color.GREEN);
}else{
bt[i].setBackground(Color.WHITE);
}
}
}
}
}
public class cinemaSeat1 {
public static void main()throws IOException {
cinemaSeats bcts = new cinemaSeats();
}
}
答案 0 :(得分:1)
您的bt
数组的长度为1
。即使您正在创建多个JButton
,您仍然只能引用其中一个(最后一个创建)。
因此,当您到达actionPerformed
时,只有在按下创建的最后一个按钮时,if (e.getSource() == bt[i])
条件才会为true
。
您必须保留对所有按钮的引用,或者您可以执行以下操作:
public void actionPerformed(ActionEvent e) {
JButton pressedButton = (JButton)e.getSource();
if(pressedButton.getBackground() == Color.GREEN){
pressedButton.setBackground(Color.WHITE);
}else if(pressedButton.getBackground() == Color.WHITE){
pressedButton.setBackground(Color.GREEN);
}else{
pressedButton.setBackground(Color.WHITE);
}
}