-
Notifications
You must be signed in to change notification settings - Fork 0
/
inheritance.cpp
80 lines (68 loc) · 1.32 KB
/
inheritance.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
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
#include <iostream>
using namespace std;
class Human
{
public:
int age;
int height;
int weight;
public:
Human()
{
cout << "Default constructor " << endl;
}
Human(int age, int height, int weight)
{
this->age = age;
this->height = height;
this->weight = weight;
}
void walk()
{
cout << "Human is walking" << endl;
}
void dance()
{
cout << "Human is dancing " << endl;
}
// getter
void setDetails(int age, int height)
{
this->age = age;
this->height = height;
}
int getAge()
{
return this->age;
}
int getHeight()
{
return this->height;
}
int getWeight()
{
return this->weight;
}
};
//inherited the properties from Human (paerent) class
class Male : public Human
{
public:
string color;
public:
void chessPlay()
{
cout << "Playing Chess " << endl;
}
};
int main()
{
Human h1(20, 172, 70);
cout << "age is :- " << h1.getAge() << endl;
cout << "height is :- " << h1.getHeight() << endl;
cout << "weight is :- " << h1.getWeight() << endl;
Male Male_1;
Male_1.setDetails(32, 175);
cout << "Height of male is :- " << Male_1.getHeight() << endl;
cout << "Color is :- " << Male_1.color << endl;
}