将对象传递给方法?

发布于 2024-10-31 04:37:06 字数 145 浏览 0 评论 0原文

public void actionPerformed(ActionEvent actionEvent) { 。

除了 ActionEvent 的引用被传递给 actionPerformed 方法之外,这一行的详细含义是什么

public void actionPerformed(ActionEvent actionEvent) {
}

What does this line mean in detail, apart from that ActionEvent 's reference is being passed to actionPerformed method.

如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。

扫码二维码加入Web技术交流群

发布评论

需要 登录 才能够评论, 你可以免费 注册 一个本站的账号。

评论(2

疯狂的代价 2024-11-07 04:37:06
public void actionPerformed(ActionEvent actionEvent) { }
  • public:可以从任何代码访问方法。
  • void:方法不返回任何内容。
  • actionPerformed:方法名称。
  • (:您开始指定参数列表。
  • ActionEvent:参数 #1 的类型。
  • actionEvent:参数 #1 的名称。
  • < code>):您已完成指定参数列表。
  • { }:方法不执行任何操作。
public void actionPerformed(ActionEvent actionEvent) { }
  • public: Method is accessible from any code.
  • void: Method doesn't return anything.
  • actionPerformed: Name of method.
  • (: You're beginning to specify the parameter list.
  • ActionEvent: Type of parameter #1.
  • actionEvent: Name of parameter #1.
  • ): You've finished specifying the parameter list.
  • { }: Method doesn't do anything.
悲歌长辞 2024-11-07 04:37:06

此方法是 ActionListener 接口的一部分。

public class Listener implements ActionListener{

public static void main(String[] args) {
    Listener listener = new Listener();
    Button button = new Button();
    button.addActionListener(listener);
}

public void actionPerformed(ActionEvent e) {
    throw new UnsupportedOperationException("Not supported yet.");
}

用户按下按钮时,Listener 类的actionPerformed 方法将被调用。

This method is part of ActionListener interface.

public class Listener implements ActionListener{

public static void main(String[] args) {
    Listener listener = new Listener();
    Button button = new Button();
    button.addActionListener(listener);
}

public void actionPerformed(ActionEvent e) {
    throw new UnsupportedOperationException("Not supported yet.");
}

}

When the user will press the button, the method actionPerformed of Listener class will be invoked.

~没有更多了~
我们使用 Cookies 和其他技术来定制您的体验包括您的登录状态等。通过阅读我们的 隐私政策 了解更多相关信息。 单击 接受 或继续使用网站,即表示您同意使用 Cookies 和您的相关数据。
原文