共计 646 个字符,预计需要花费 2 分钟才能阅读完成。
在 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"。
丸趣 TV 网 – 提供最优质的资源集合!
正文完