If the child's function signature is different to the partent's, then the child has two functions which are overloaded.
The compiler will pick the right one according to which kind of arguments you give it. One can modify its arguments and forward the work to another function if it likes.
For example,
class Child : public Parent {
using Parent :: foo;
void foo (type1 var1);
};
Child c;
child .foo (type1()); // Valid
child .foo (type1(), type2()); // Valid, calls Parent::foo
void Child :: foo (type1 x) {
Parent :: foo (x+1, blah);
}
Or, if you want to disambiguate.
class Child : public Parent {
void foo (type1 var1, type2 var2);
};
Child c;
child .foo (type1(), type2()); // Valid, calls Child::foo
child .Parent :: foo (type1(), type2()); // Valid.
Overriding is something else.
class Parent {
virtual void foo () {}
};
class Child1 : parent {
void foo ();
};
class Child2 : parent {
void foo ();
};
void call_foo (Parent & p) {p .foo ();}
Parent p;
Child1 c1;
Child2 c2;
call_foo (p); // Calls Parent::foo
foo (c1); // Calls Child1::foo
foo (c2); // Calls Child1::foo
virtual. Note, that protected is the least useful access specifier for virtual method. Either you will be calling it directly from outside, in which it should be public, or you will have a public wrapper for it, in which case private is sufficient. You only need protected if the subclasses will need to call the parent implementations. – Jan Hudec Jul 4 '11 at 12:40