-
Notifications
You must be signed in to change notification settings - Fork 2
/
Copy pathe.cpp
76 lines (67 loc) · 1.12 KB
/
e.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
/*
topic:- base class pointer
*/
#include <iostream>
using namespace std;
class Base
{
int x;
protected:
int y;
public:
Base()
{
cout << "Base constructor\n";
}
void setx(int x)
{
this->x = x;
}
void sety(int y)
{
this->y = y;
}
void show()
{
cout << "Base\n";
}
~Base()
{
cout << "Base Destructor\n";
}
};
class Derived1 : public Base
{
public:
Derived1()
{
cout << "Derived1 constructor\n";
}
//function overriding
void show()
{
cout << "Derived1\n";
}
void sshow()
{
cout << "only in Derived1\n";
}
~Derived1()
{
cout << "Derived1 destructor\n";
}
};
/*
1| derived class must access the base class publicly for using base class pointer.
2| pointer arithmetic will happen assuming base class pointer
*/
int main()
{
Base *bp = new Derived1;
bp->setx(1);
bp->sety(2);
bp->show(); //show of base class will be called.
//bp->sshow() is inaccessible as base class don't know about sshow().
delete bp;
return 0;
}