我正在用java开发一个打地鼠游戏。我正在创建一个 10*10 的按钮网格。但是我无法访问 actionlistener 中单击按钮的 id。这是我到目前为止的代码。
String buttonID;
buttonPanel.setLayout(new GridLayout(10,10));
for (int i = 0; i < 10; i++) {
for (int j = 0; j < 10; j++) {
buttonID = Integer.toString(++buttonCount);
buttons[i][j] = new JButton();
buttons[i][j].setName(buttonID);
buttons[i][j].addActionListener(this);
buttons[i][j].setDisabledIcon(null);
buttonPanel.add(buttons[i][j]);
}
}
public void actionPerformed(ActionEvent ae) {
if (ae.getSource()==startButton) {
System.out.println("Game has been started");
}
if (ae.getSource() == "34") { //please see the description below
System.out.println("Yes I have clicked this button");
}
else {
System.out.println("Other button is clicked");
}
}
目前我刚刚打印了一些东西。我不知道如何将 ae.getsource() 与单击的按钮进行比较。我只是试图将它与“34”进行比较。但是当我单击网格上的第 34 个按钮时,它仍然会打印“单击其他按钮”。