-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathVirtual functions .cpp
More file actions
66 lines (66 loc) · 897 Bytes
/
Virtual functions .cpp
File metadata and controls
66 lines (66 loc) · 897 Bytes
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
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
#include "iostream"
using namespace std;
class shape
{
double l,b;
public:
void get_data(double c, double d)
{
l=c;
b=d;
}
double ret_l()
{
return l;
}
double ret_b()
{
return b;
}
virtual void display_area()
{
cout<<"No shape yet";
}
};
class triangle: public shape
{
double a;
public:
triangle(double c, double d)
{
shape::get_data(c,d);
}
void display_area()
{
a=0.5*ret_b()*ret_l();
cout<<"triangle area: "<<a<<endl;
}
};
class rectangle: public shape
{
double a;
public:
rectangle(double c, double d)
{
shape::get_data(c,d);
}
void display_area()
{
a=ret_b()*ret_l();
cout<<"rectangle's area: "<<a<<endl;
}
};
int main()
{
shape *sptr;
shape s1;
triangle t1(4,5);
rectangle r1(4,5);
//sptr=&s1;
//sptr->get_data(4,5);
sptr=&t1;
sptr->display_area();
sptr=&r1;
sptr->display_area();
return 0;
}