-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy patht12.cpp
More file actions
84 lines (59 loc) · 820 Bytes
/
Copy patht12.cpp
File metadata and controls
84 lines (59 loc) · 820 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
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
/*ambiguity resolution*/
#include <iostream>
using namespace std;
class base1
{
public:
void greet()
{
cout << "hi" << endl;
}
};
class base2
{
public:
void greet()
{
cout << "hello" << endl;
}
};
class derived : public base1, public base2
{
int a;
public:
void greet()
{
base1::greet();
}
};
class b{
public:
void show()
{
cout<<"hello ji"<<endl;
}
};
class d : public b{
int a;
public:
void show()
{
cout<<"how are u"<<endl;
}
};
int main()
{
//ambuigity 1
// base1 b1;
// b1.greet();
// base2 b2;
// b2.greet();
//derived d;
// d.greet();
// return 0;
//ambuigity2
b b1;
d d1;
b1.show();
d1.show();
}