What is Pure Virtual Function? Why and when it is used ?
Answer Posted / ognas(shradha-asutosh)
in inheritance if the base class contains a virtual
function equating to zero, it is known also as do-nothing
function & that base class is called as abstract base class
as there are no instances or objects can be created by this
base class. And this pure virtual can be filled with the
codes in successiv derived classes accordin to the user
requirements.
The syntax of the pure virtual function is....
class class_name
{
visibility mode:\\should be protected:
virtual return_type function_name()=0;
}
new class_name : inheritance_type old class_name
{
........ //class body
........
}
| Is This Answer Correct ? | 69 Yes | 19 No |
Post New Answer View All Answers
Explain abstraction.
Define a nested class.
What are the restrictions apply to constructors and destructors?
What is the standard template library (stl)?
Difference between pointer to constant and constant pointer to a constant. Give example.
Why do we need pointers?
How do you instruct your compiler to print the contents of the intermediate file showing the effects of the preprocessor?
How delete [] is different from delete?
program explaining feautures of c++
Is c++ still being used?
Mention the purpose of istream class?
When is the destructor called?
Can user-defined object be declared as static data member of another class?
Is main a class in c++?
What is a binary file? List the merits and demerits of the binary file usagein C++.