-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathconst_n_mutables.cpp
46 lines (35 loc) · 989 Bytes
/
const_n_mutables.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
#include <iostream>
#include <string>
using namespace std;
class Training
{
string training;
// from cppreference:
// used to specify that the member does not affect the externally visible state of the class
// (as often used for mutexes, memo caches, lazy evaluation, and access instrumentation).
mutable int nbRequests = 0;
public:
// constructor
Training(string training)
{
this->training = training;
}
string GetInformation() const
{
//cannot modify field...
//training = "new training";
//...except if nbRequests is defined as mutable
nbRequests++;
return training + " has been requested " + to_string(nbRequests) + " times";
}
};
int main()
{
Training t("cpp");
t.GetInformation();
cout << t.GetInformation() << endl;
cout << t.GetInformation() << endl;
cout << t.GetInformation() << endl;
std::cout << "Hello, World!" << std::endl;
return 0;
}