#1
13th February 2012, 12:18 AM
|
|||
|
|||
What is meant by abstract classes and pure virtual function in programming languages?
what do u mean by abstract classes and pure virtual functions?
please send me the details |
#2
7th April 2016, 11:06 AM
|
|||
|
|||
Re: What is meant by abstract classes and pure virtual function in programming languages?
Abstract Class & Pure Virtual function are related to each other and is one of the important features of C++ Programing language.
An abstract class is a class that is designed to be specifically used as a A pure virtual function is a virtual function that is required to be implemented by a derived class if the derived class is not abstract. Classes containing pure virtual methods are termed "abstract" and they cannot be instantiated directly. |
|