What is meant by the term “hook” in programming?

前端 未结 12 2451
暖寄归人
暖寄归人 2020-12-07 06:56

I recently heard the term \"hook\" while talking to some people about a program I was writing. I\'m unsure exactly what this term implies although I inferred from the conve

12条回答
  •  时光取名叫无心
    2020-12-07 07:20

    Hook denotes a place in the code where you dispatch an event of certain type, and if this event was registered before with a proper function to call back, then it would be handled by this registered function, otherwise nothing happens.

提交回复
热议问题