I have a base class pointer pointing to a derived class object. I am calling foo()
function by using two different ways in the code below. Why does Derived::foo()
get called in the first case? Shouldn't (*obj).foo()
call Base::foo()
function as it has already been dereferenced?
class Base
{
public:
Base() {}
virtual void foo() { std::cout << "Base::foo() called" << std::endl; }
virtual ~Base() {};
};
class Derived: public Base
{
public:
Derived() : Base() {}
virtual void foo() { std::cout << "Derived::foo() called" << std::endl; }
virtual ~Derived() {};
};
int main() {
Base* obj = new Derived();
// SCENARIO 1
(*obj).foo();
// SCENARIO 2
Base obj1 = *obj;
obj1.foo();
return 0;
}
See Question&Answers more detail:os