class
A
{
protected:
void
f();
}
class B : public
A
{
protected:
void f()
{
A::f();
}
}
We can
use the function of parent class in this way, but I don't know how to use the operator
of parent class.
No comments:
Post a Comment