两个JButton可以有相同的鼠标点击事件函数吗?
我正在用Java语言开发一个计算器。问题是,我为数字(0,1,2..9)放置了十个按钮,我希望当我单击其中一个按钮时,所有按钮都执行相同的鼠标单击功能。是否可以?在netbeans中,它不允许我这样做,否则我无法实现。谢谢你的帮助。
I am developing a calculator in Java language. The problem is that, i put ten buttons for digits(0,1,2..9) and i want that when i clicked one of them, all perform the same mouse clicked function. Is it possible? In netbeans, it does not let me do that, or i couldnt achieve. Thank you for helping.
如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(1)
是的。将相同的侦听器添加到您正在使用的两个按钮。
例如,假设您正在使用 actionListener:
Yes. Add the same listener to both buttons you are using.
For example, suppose you are using actionListener then: