发布此问题的原因是为了了解 and 的基本区别和用Event
例EvenHandler
。
3 回答
事件:-在计算中,事件是程序检测到的可以由程序处理的动作或事件。通常事件与程序流程同步处理,也就是说,程序有一个或多个专门处理事件的地方。
事件处理程序:-
包含响应事件而执行的程序语句的函数或方法。事件处理程序通常是处理诸如击键和鼠标移动之类的动作的软件例程。对于 Web 站点,事件处理程序使 Web 内容动态化。JavaScript 是为 Web 内容编写事件处理程序脚本的常用方法。
非常基本的示例是您单击 facebook 上的登录按钮,单击登录按钮有相应的事件处理程序,它告诉 facebook 应用程序用户尝试登录
您不能同时比较处理程序和事件。
所有处理程序都存储在一个 HandlerManager 中,它还管理调度任何类型的事件(包括您自己创建的新事件)。
而且
处理程序被传递一个事件对象,其中所有事件详细信息作为它们的唯一参数,即事件
They may mean different things, depending on a specific context. A general meaning of an event is a an action or occurrence somewhere in the program; normally events are handled by the program in modules called handlers.
For example in Java you may an event triggered by the push of a button; what the program does when that button is call the code in the handler for that particular event.