-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy path9-virtual_functioin.c++
70 lines (58 loc) · 1.27 KB
/
9-virtual_functioin.c++
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
#include <iostream>
using namespace std;
// class A {
// int x=5;
// public:
// virtual void display() {
// cout << "Value of x is : " << x<< endl;
// }
// };
// class B: public A {
// int y = 10;
// public:
// void display() {
// cout << "Value of y is : " << y<< endl;
// }
// };
// int main() {
// A *a;
// B b;
// a = &b;
// a->display();
// return 0;
// }
// class Base
// {
// public:
// virtual void show() = 0;
// };
// class Derived : public Base
// {
// public:
// void show()
// {
// std::cout << "Derived class is derived from the base class." << std::endl;
// }
// };
// int main()
// {
// Base *bptr;
// // Base b;
// Derived d;
// bptr = &d;
// bptr->show();
// return 0;
// }
class Animal { // base class declaration.
public:
string color = "Black";
};
class Dog: public Animal // inheriting Animal class.
{
public:
string color = "Grey";
};
int main(void) {
Animal d;
cout<<d.color;
}