OOPs Concepts
Programming and Technical
Programming
Definition
What is pure virtual function?
Read Solution (Total 2)
-
- compile time exception, handled by exception handling, eg: file not found exception, connection timed out exception, error in sql query passed by java code etc
- 11 years agoHelpfull: Yes(0) No(0)
- class A
{virtual void display()=0;// body defined by the class inheriting this abstract class }; - 9 years agoHelpfull: Yes(0) No(0)
OOPs Concepts Other Question