-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathcast_constructor.cpp
108 lines (85 loc) · 1.66 KB
/
cast_constructor.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
#include <iostream>
#include <typeinfo>
#include <array>
#include <string>
using namespace std;
class Defense
{
public:
int grade;
// constructor no args
Defense()
{
grade = 0;
}
//converting constructor,
// use of 'explicit' to avoid doing def = xx
explicit Defense(int g)
{
if (g < 12)
grade = g + 1;
else
grade = g;
}
};
enum class Participation
{
Enthousiastic,
Active,
Average,
weak
};
class Exam
{
public:
int grade;
// constructor without args
Exam()
{
grade = 0;
}
// converting constructor from int
Exam(int g)
{
if (g < 10)
{
grade = g + 1;
}
else
{
grade = g;
}
}
};
/* converting constructor
* Exam exam(18);
*
* or
*
* Exam2 exam = 18; // cannot have implicit and explicit for the same class
*
*/
int main()
{
// implicit
Exam exam = Exam(17);
Exam exam2 = Exam(9);
cout << exam2.grade << " " << exam.grade << endl;
// split declaration and init
Exam exam4;
cout << exam4.grade << endl;
exam4 = 16; // this is implicit
cout << exam4.grade << endl;
// explicit
cout << "explicit\n";
Defense def = Defense(17); // this is explicit and still works
Defense def2 = Defense(9);
cout << def2.grade << " " << def.grade << endl;
// split declaration and init
Defense def4;
cout << exam4.grade << endl;
//def4 = 16; // this is implicit and will not work any more
cout << def4.grade << endl;
cout << "\n\n normal end of the program!" << endl;
return 0;
}