Suppose I have:
struct Vehicle {...}
struct Car : public Vehicle {...}
string A(Vehicle *v) { return "vehicle"; }
string A(Car *c) { return "car"; }
And I do this:
Vehicle *v = new Car();
cout << A(v);
Why does the compiler print out "vehicle"? After all, v points to a Car object.