Hi,
My code is in this way:
base()
{
abc()
{
virtual void def();
}
}
derived:base()
{
abc()
virtual void def();
}
My question here is I want to know which def would be called when it encounters the abc() function in the base class.
My code is in this way:
base()
{
abc()
{
virtual void def();
}
}
derived:base()
{
abc()
virtual void def();
}
My question here is I want to know which def would be called when it encounters the abc() function in the base class.
Comment