Static and Dynamic Dispatch

Introduction Dispatch is the act of sending something somewhere. In computer science, this term is used to indicate the same concept in different contexts, like to dispatch a call to a function, dispatch an event to a listener, dispatch an interrupt to a handler or dispatch a process to the CPU. In this article, we will examine this term in the Object-Oriented (OO) world, which means to dispatch a call to a method. Read more →