adspace
How do you invoke a base member function from a derived class in which you’ve overridden that function?
Answer Posted / Vijendra Singh
To call the base implementation of an overridden function in C++, use the `base::` keyword followed by the scope resolution operator (::) and the function name. For example: `base::functionName()`.
| Is This Answer Correct ? | 0 Yes | 0 No |
Post New Answer View All Answers