I was asked this crazy question. I was out of my wits.
Can a method in base class which is declared as virtual be called using the base class pointer which is pointing to a derived class object?
Is this possible?
|
If you're trying to invoke a virtual method from the base class pointer, yes. That's polymorphism. If you're asking, with a base class pointer to a derived class, can you invoke a base class method that is overriden by the derived class? Yes that's also possible by explicitly scoping the base class name:
|
|||||||||||||||||
|
|
Try:
|
|||||||||
|
|
You mean something like this. (Where
Yes, it's possible. |
|||
|
|
|
Yes -- you have to specify the full name though:
|
|||
|
|
|
If I understand the question correctly, you have
And the question is, can you call
|
|||
|
|
Try calling
to invoke base class foo function |
|||||
|
Solutions :
|
||||
|
|
|
No. Not in a clean way. But yes. You have to do some pointer manipulation, obtain a pointer to the vtable and make a call. but that is not exactly a pointer to base class, but some smart pointer manipulation. Another approach is using scope resolution operator on base class. |
|||||||||
|
base::foo()notderived::foo()usingpifpis abase*and points to aderived– John Dibling Jun 16 '10 at 16:57