要為按鈕添加ActionListener,可以通過以下步驟來實現:
JButton button = new JButton("Click Me");
class MyActionListener implements ActionListener {
@Override
public void actionPerformed(ActionEvent e) {
// 處理按鈕點擊事件的邏輯
System.out.println("Button clicked!");
}
}
MyActionListener myListener = new MyActionListener();
button.addActionListener(myListener);
現在,當用戶點擊按鈕時,MyActionListener類的actionPerformed方法將被調用,從而處理按鈕點擊事件的邏輯。