在Java中,事件監聽器(EventListener)用于處理特定類型事件的回調。要定義一個事件處理方法,您需要遵循以下步驟:
ActionEvent
、MouseListener
等。import java.awt.event.ActionEvent;
import java.awt.event.ActionListener;
public interface MyListener extends ActionListener {
void actionPerformed(ActionEvent e);
}
import java.awt.event.ActionEvent;
import java.awt.event.ActionListener;
import javax.swing.JButton;
public class MyListenerImpl implements MyListener {
@Override
public void actionPerformed(ActionEvent e) {
// 在這里處理事件,例如更新UI或執行其他操作
System.out.println("按鈕被點擊了!");
}
}
import javax.swing.JButton;
import javax.swing.JFrame;
public class Main {
public static void main(String[] args) {
JFrame frame = new JFrame("事件監聽器示例");
JButton button = new JButton("點擊我");
MyListener listener = new MyListenerImpl();
button.addActionListener(listener);
frame.add(button);
frame.setSize(300, 200);
frame.setDefaultCloseOperation(JFrame.EXIT_ON_CLOSE);
frame.setVisible(true);
}
}
在這個例子中,當用戶點擊按鈕時,MyListenerImpl
類中的actionPerformed
方法將被調用,從而執行事件處理邏輯。