将对象传递给方法?
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 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(2)
public
:可以从任何代码访问方法。void
:方法不返回任何内容。actionPerformed
:方法名称。(
:您开始指定参数列表。ActionEvent
:参数 #1 的类型。actionEvent
:参数 #1 的名称。{ }
:方法不执行任何操作。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.此方法是 ActionListener 接口的一部分。
当
用户按下按钮时,Listener 类的actionPerformed 方法将被调用。
This method is part of ActionListener interface.
}
When the user will press the button, the method actionPerformed of Listener class will be invoked.