Sunday 8 April 2018

Pure Virtual Function

It is normal practice to declare a function virtual inside the base class and redefine it in the derived classes. The function inside the base class is rarely used for performing any particular task.

It only serves as a place holder. A pure virtual function is a type of the function which has only one function declaration. It does not have the function definition. 

A pure virtual function can be declared in two different ways.
 1. A virtual function does not contain a body
      Ex virtual void getdata( )
{

}
 2. A virtual function may be equated to zero in the function declaration itself
    Ex virtual void getdata( ) = 0;

Above function are called pure virtual function. A pure virtual function is a function declared in a base class that has no definition relative to the base class. In such cases , the compiler requires each derived class to either define the function or re-declare it is a pure virtual function.

Those function which are only declared but not defined in the base class are called pure virtual function.

Program to demonstrate the pure virtual function

#include<conio.h>
#include<iostream.h>
class A
{
public:
virtual void getdata( )
virtual void putdata( )=0;
};
class B : public A
{
public:
void getdata( )
{
cout<<"\n\t This is B class getdata( )";
}
void putdata( )
{
cout<<"\n\t This is B class putdata( )";
}
};
void main( )
{
clrscr( );
A *ptr;
B b;
b.getdata( );
b.putdata( );
ptr=&b;
ptr->getdata( );
ptr->putdata( );
getch( );
}

Output:-
This is B class getdata( )
This is B class putdata( )
This is B class getdata( )
This is B class putdata( )

0 Comments:

Post a Comment

Popular Posts

Categories

AI (27) Android (24) AngularJS (1) Assembly Language (2) aws (17) Azure (7) BI (10) book (4) Books (114) C (77) C# (12) C++ (82) Course (60) Coursera (176) coursewra (1) Cybersecurity (22) data management (11) Data Science (88) Data Strucures (6) Deep Learning (9) Django (6) Downloads (3) edx (2) Engineering (14) Excel (13) Factorial (1) Finance (5) flutter (1) FPL (17) Google (19) Hadoop (3) HTML&CSS (46) IBM (25) IoT (1) IS (25) Java (92) Leet Code (4) Machine Learning (44) Meta (18) MICHIGAN (5) microsoft (3) Pandas (3) PHP (20) Projects (29) Python (741) Python Coding Challenge (190) Questions (2) R (70) React (6) Scripting (1) security (3) Selenium Webdriver (2) Software (17) SQL (40) UX Research (1) web application (8)

Followers

Person climbing a staircase. Learn Data Science from Scratch: online program with 21 courses