First page Back Continue Last page Graphics
Static & Dynamic Binding
The question is “Which function do I call?”
With C, it's simple, there is only one function by any one name.
With C++, it is harder because you can overload function names.
With virtual functions, it's even harder.
The connection of actual code to a particular function is called binding.