-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathtutorial24.cpp
42 lines (37 loc) · 1.02 KB
/
tutorial24.cpp
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
#include<bits/stdc++.h>
using namespace std;
/*
PURE VIRTUAL FUNCTION and ABSTRACT CLASS
1. A virtual function having no body is known as a "pure virtual function".
2. A class having at least one pure virtual function is known as "Abstract Class".
3. VVI: We can not define an object of an Abstract Class.
4. A class that inherits an Abstract class should must define the pure virtual function otheerwise that class will also become Abstract Class.
*/
class Human // Abstract Class
{
public:
virtual void Introduce() = 0;
};
class Indian : public Human // Abstract Class
{
public:
void TellMeAboutYourself()
{
cout<<"Hello! I am an Indian."<<endl;
}
};
class Student : public Human
{
public:
void Introduce()
{
cout<<"Hello! I am Student."<<endl;
}
};
int main()
{
// Human saurav; -->this is not allowed because Human is an Abstract Class.
// Indian saurav; -->this is not allowed because Indian is also an Abstract Class.
Student saurav;
saurav.Introduce();
}