Find centralized, trusted content and collaborate around the technologies you use most.
Teams
Q&A for work
Connect and share knowledge within a single location that is structured and easy to search.
在 Java AWT 按钮上,我可以添加鼠标侦听器和动作侦听器。那么我可以说鼠标事件是硬件中断,因为它们是由鼠标生成的,而动作事件是软件中断,因为它们是在更改按钮状态时生成的?
有点。Java 有事件而不是中断。区分鼠标事件和动作事件的主要原因是除了实际单击按钮之外,还有其他方法可以单击按钮。您可以将焦点指向按钮,然后按空格键,至少在 Mac 上是这样。