Event handler - перевод на испанский
Diclib.com
Словарь ChatGPT
Введите слово или словосочетание на любом языке 👆
Язык:

Перевод и анализ слов искусственным интеллектом ChatGPT

На этой странице Вы можете получить подробный анализ слова или словосочетания, произведенный с помощью лучшей на сегодняшний день технологии искусственного интеллекта:

  • как употребляется слово
  • частота употребления
  • используется оно чаще в устной или письменной речи
  • варианты перевода слова
  • примеры употребления (несколько фраз с переводом)
  • этимология

Event handler - перевод на испанский

EVENT IN THE CONTEXT OF COMPUTING
Event listener; Event handler; Mouse click; Event model; Event handling; Event handlers; Keystrokes; Event object; Event Listner; Event listner; Event notification; Click (mouse); Keypresses; Keypress; Listener (computing); Key press; Event (programming); Keyboard event; Mouse event; Keystroke event; Touchscreen event; User-generated event

Event handler         
Manejador de eventos
event handler         
Evento manipulativo, Fragmento en el programa que reacciona a los eventos ocurridos
Handler         
WIKIMEDIA DISAMBIGUATION PAGE
Handler (disambiguation); Handler (computing)
Manipulador

Определение

evento
evento (del lat. "eventus") m. *Suceso. Particularmente, suceso posible; es corriente sólo en la frase siguiente.
A todo evento. En *previsión de lo que pueda pasar, sea lo que sea.

Википедия

Event (computing)

In programming and software design, an event is an action or occurrence recognized by software, often originating asynchronously from the external environment, that may be handled by the software. Computer events can be generated or triggered by the system, by the user, or in other ways. Typically, events are handled synchronously with the program flow; that is, the software may have one or more dedicated places where events are handled, frequently an event loop.

A source of events includes the user, who may interact with the software through the computer's peripherals - for example, by typing on the keyboard. Another source is a hardware device such as a timer. Software can also trigger its own set of events into the event loop, e.g. to communicate the completion of a task. Software that changes its behavior in response to events is said to be event-driven, often with the goal of being interactive.