- Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathvirtual.cpp
More file actions
Latest commit
55 lines (45 loc) · 979 Bytes
/
Copy pathvirtual.cpp
File metadata and controls
55 lines (45 loc) · 979 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
#include<iostream>
structEntity
{
virtualvoidPrint()
{
std::cout << "Entity" << std::endl;
}
};
classPlayer : publicEntity// class has private inheritance by default
{
public:
voidPrint() override
{
std::cout << m_Name << std::endl;
}
private:
constchar *m_Name = "Player";
};
classInterface
{
public:
virtualvoidPrint() = 0; // pure virtual function
// makes the class abstract
// must be overridden by derived classes
};
classImplement : publicInterface
{
public:
voidPrint() override
{
std::cout << "Hello, World!" << std::endl;
}
};
intmain()
{
Entity e;
e.Print();
Player p;
p.Print();
/*Interface i; // can't instantiate abstract class
i.Print();*/
// can't call pure virtual function
Implement impl; // can instantiate derived class
impl.Print(); // can call overridden function
}