-
Notifications
You must be signed in to change notification settings - Fork 2
/
Copy pathb.cpp
89 lines (75 loc) · 1.25 KB
/
b.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
81
82
83
84
85
86
87
88
89
/*
topic:- accessiblity-2
*/
#include <iostream>
using namespace std;
class base
{
int x;
protected:
int y;
public:
void setx(int x)
{
this->x = x;
}
void sety(int y)
{
this->y = y;
}
void show()
{
cout << "x: " << x << " y: " << y << "\n";
}
};
class Derived1 : private base
{
public:
void ssety(int y)
{
this->y = y;
}
void sshow()
{
cout << "x is not accessible from derived. y: " << y << "\n";
}
};
class Derived2 : protected base
{
public:
void ssety(int y)
{
this->y = y;
}
void sshow()
{
cout << "x is not accessible from derived. y: " << y << "\n";
}
};
class Derived3 : public base
{
};
class SecondGen1 : public Derived1
{
//every member of base class is inaccessible but public and protected members of Derived1 is accessible
public:
void ssshow()
{
sshow();
}
};
class SecondGen2 : public Derived2
{
//protected and public member of base class is protected here but public and protected members of Derived2 is public and protected respectively
void ssshow()
{
show();
}
};
int main()
{
SecondGen1 sg1;
sg1.sshow();
sg1.ssshow();
return 0;
}