At a bit more technical level (hope I have my facts straight :S), there is something called vtable which is built to achieve polymorphism.
Basically there can only be one vtable per class, so any instance of a class will share the same vtable, the vtable is invisible to the programmer so to speak, and it contains pointers to implementation of virtual functions.
It's the compiler that builds the vtables and they are only built if they are needed (i.e. if the class or it's base-class contains a virtual function. So worth noting is that not all classes get a vtable built.
example time:
class Base {
public:
virtual void helloWorld();
}
class Derived : public Base {
public:
void helloWorld();
}
int main(void) {
Derived d;
Base *b = &d;
b->helloWorld(); // here is the magic...
/* This call is actually translated to something like the line below,
lets assume we know that the virtual pointer pointing to the viable
for Derived is called Derived_vpointer (but it's only a name and
probably not what it would be called):
*(b -> Derived_vpointer -> helloWorld() )
*/
So, this mean that when b->helloWorld() is called it actually use a vpointer to look up a vtable which is substituted in to guide the call to the correct version of the virtual function. So the class Derived here, has a vtable and a virtual pointer pointing to the table. So when b is pointing to a Derived instance it will use the vpointer from Derived ending up calling the correct implementation.
This is done runtime or rather the lookup is done runtime because we could easily have another class extend Base and make b point to this (let us call it AnotherDerived) class. what happens when we again use b->helloWorld() is that the vpointer of AnotherDerived will be used to evaluate the call to helloWorld().
So let's get it in code..
...
int main(void) {
Derived derived;
AnotherDerived anotherDerived;
Base *base;
base->helloWorld();
/* base points to a Base object, i.e. helloWorld() will be called for base. */
*base = &derived; // base's vpointer will point at the vtable of Derived!
base->helloWorld();
/* calling:
base->Derived_vpointer->helloWorld();
*/
*base = &anotherDerived;
base->helloWorld(); // base's vpointer will point at the vtable of AnotherDerivedClass
/* calling:
base->AnotherDerived_vpointer->helloWorld();
*/