本文介绍了什么是更好用:Action vs ActionListener?的处理方法,对大家解决问题具有一定的参考价值,需要的朋友们下面随着小编来一起学习吧!
问题描述
我自己,我总是使用作为swing事件处理程序(例如按钮单击),它是我在大多数swing应用程序中看到的最常见的监听器。
Myself, I always use ActionListener
as swing event-handler (e.g. button-click), and it is the most common listener I've seen in most swing applications.
但是,stackoverflow中的一些Swing专业人员经常建议使用而不是。我从中获得了什么好处?
However, Some Swing professionals here in stackoverflow often advise to use Action
rather than ActionListener
. What benefits I get from doing so?
推荐答案
首选行动
如果您需要跨组件共享功能。来自
An Action
is preferred if you need to share functionality across components. From the docs
但也说
这篇关于什么是更好用:Action vs ActionListener?的文章就介绍到这了,希望我们推荐的答案对大家有所帮助,也希望大家多多支持!