-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathenums_n_overriding_shift_operator.cpp
116 lines (90 loc) · 2.05 KB
/
enums_n_overriding_shift_operator.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
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
#include <iostream>
#include <string>
#include <array>
using namespace std;
// C style enum
enum Color
{
red,
green,
blue
};
// C style enum
enum Training
{
cpp,
python,
angular
};
//C++ style
enum class StateExec
{
Running,
Stopped,
Unknown
};
// can attach explicitly values
enum class Voltage : short
{
Three = 3,
Five = Three + 2,
Nine = 9,
Twelve = Three + Nine,
fifteen,
Unknown = -1
};
// enum with char
enum class evalExam : char
{
Rejected = 'r',
Good = 'g',
Excellent = 'e'
};
// overriding insertion operator << to print an eval item
ostream &operator<<(ostream &os, evalExam ev)
{
switch (ev)
{
case evalExam::Rejected:
os << " you have been rejected";
break;
case evalExam ::Excellent:
os << " very successfull";
break;
case evalExam ::Good:
os << " mmmK ";
break;
default:
os << " not available";
}
}
int main()
{
// enum color has defined a new type that cna be used
Color col = Color::blue; // :: operator of resolution
cout << "col " << col << endl;
Color col2 = red; // without :: (C style)
cout << "col2 " << col2 << endl;
Training training = cpp;
int i = 100;
StateExec taskStatus = StateExec ::Stopped;
//cout << " task status " << taskStatus << endl;
// not possible to print as operator << is not overided byt the enum
// cannot also be assigned to an int
// i = taskStatus
// conversion enum to int
i = static_cast<int>(taskStatus);
cout << " i " << i << endl;
// enum not specified
Voltage v = Voltage ::fifteen;
cout << "voltage " << static_cast<int>(v) << endl;
// enum with char
evalExam evaluation = evalExam ::Rejected;
char c = static_cast<char>(evaluation);
i = static_cast<int>(evaluation);
cout << "evaluation " << c << " in int " << i << endl;
// display eval
cout << "evaluation " << evaluation << endl;
cout << "\n\n normal end of the program" << endl;
return 0;
}