C++ Virtual Functions Question:
Download Questions PDF

Tell me can a pure virtual function have an implementation?

C++ Virtual Functions Interview Question
C++ Virtual Functions Interview Question

Answers:

Answer #1
The quick answer to that question is yes! A pure virtual function can have an implementation in C++ - which is something that even many veteran C++ developers do not know. So, using the SomeClass class from our example above, we can have the following code:

class SomeClass {
public:
virtual void pure_virtual() = 0; // a pure virtual function
// note that there is no function body
};

/*This is an implementation of the pure_virtual function
which is declared as a pure virtual function.
This is perfectly legal:
*/
void SomeClass::pure_virtual() {
cout<<"This is a test"<<endl;
}< /endl;

Answer #2
The previous answer is correct. Marked it no by mistake.

Download C++ Virtual Functions Interview Questions And Answers PDF

Previous QuestionNext Question
Give example of a pure virtual function in C++?Explain polymorphism?