-
Notifications
You must be signed in to change notification settings - Fork 1
/
Polymorphism.cpp
71 lines (64 loc) · 1.56 KB
/
Polymorphism.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
/* author: jaydattpatel
Polymorphisam:
Polymorphism means same content but different forms.
The concept of polymorphism the same program code can call different functions of different classes.
*/
#include <iostream>
using namespace std;
class vehicle
{
int wheels;
float weight;
public:
void message(void) // first message
{
cout<<"Vehicle message, from vehicle, the base class\n";
}
};
class car : public vehicle
{
int passenger_load;
public:
void message(void) // second message
{
cout<<"Car message, from car, the vehicle derived class\n";
}
};
class truck: public vehicle
{
int passenger_load;
float payload;
public:
int passengers(void)
{
return passenger_load;
}
};
class boat: public vehicle
{
int passenger_load;
public:
int passengers(void)
{
return passenger_load;
}
void message (void) // third message
{
cout<<"Boat message, from boat, the vehicle derived class\n";
}
};
int main()
{
vehicle unique_vehicle;
car sedan_car;
truck ashok_truck;
boat sailboat;
unique_vehicle.message();
sedan_car.message();
ashok_truck.message();
sailboat.message();
// base and derived object assignment
unique_vehicle = sedan_car;
unique_vehicle.message();
return 0;
}