阅读量:1
在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"。