当我点击按钮时,我需要做什么,他给了我按钮内的文字?因为在这段代码中,如果我单击按钮返回最后一个“i”var 值......在这种情况下,他给了我“5”。
for(int i; i < 5; i++) {
JButton button = new JButton();
button.setText("" + i);
button.addActionListener(new ActionListener() {
public void actionPerformed(ActionEvent ae) {
// TODO add your handling code here:
System.out.print("\n Test: " + button.getText());
}
});
button.setSize(60,20);
button.setLocation(100, 140);
button.setVisible(true);
this.add(button);
this.revalidate();
this.repaint();
}