InterviewSolution
Saved Bookmarks
| 1. |
What Is Pure Virtual Function? |
|
Answer» A class is MADE ABSTRACT by declaring one or more of its virtual functions to be pure. A pure virtual FUNCTION is one with an initializer of = 0 in its DECLARATION. A class is made abstract by declaring one or more of its virtual functions to be pure. A pure virtual function is one with an initializer of = 0 in its declaration. |
|