在Java中,getSource()
函數是用于獲取事件源對象的方法,常用于事件處理程序中。
以下是使用getSource()
函數的示例代碼:
import java.awt.*;
import java.awt.event.*;
public class MyFrame extends Frame implements ActionListener {
private Button button;
public MyFrame() {
button = new Button("Click me");
button.addActionListener(this);
add(button);
setSize(300, 200);
setVisible(true);
}
public void actionPerformed(ActionEvent e) {
if (e.getSource() == button) {
System.out.println("Button clicked");
}
}
public static void main(String[] args) {
new MyFrame();
}
}
在上面的示例中,button
是一個按鈕對象,我們通過調用addActionListener()
方法為按鈕添加一個動作事件監聽器,這個監聽器是當前類MyFrame
的實例。在actionPerformed()
方法中,我們使用getSource()
方法來獲取觸發事件的對象,然后判斷是否是按鈕對象,如果是,則打印"Button clicked"。