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 what are the sizes and ranges of the basic c++ data types?
What is #include cmath?
Explain friend class?
Explain the properties and principles of oop.
What's the best free c++ profiler for windows?
What are abstract data types in c++?
Can you please explain the difference between static and dynamic binding of functions?
Explain selection sorting?
What is the difference between struct and class?
Explain the difference between abstract class and interface in c++?
Is java as fast as c++?
What is class definition in c++ ?
What is the main use of c++?
Can you overload the operator+ for short integers?
What is the benefit of learning c++?