forked from hsf-training/cpluspluscourse
-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathconstplay.cpp
More file actions
74 lines (63 loc) · 1.36 KB
/
Copy pathconstplay.cpp
File metadata and controls
74 lines (63 loc) · 1.36 KB
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
#include <iostream>
#include <string>
/* This is a dummy function to demonstrate pass by value.
* Since it doesn't do anything with the argument, we suppress
* possible compiler warnings using `maybe_unused`.
*/
void copy(int a) {
[[maybe_unused]] int val = a;
};
void copyConst(const int a) {
[[maybe_unused]] int val = a;
};
void write(int* a) {
*a = 42;
};
void read(const int *a) {
[[maybe_unused]] int val = *a;
};
struct Test {
void hello(std::string &s) {
std::cout << "Hello " << s << '\n';
}
void helloConst(std::string &s) const {
std::cout << "Hello " << s << '\n';
}
};
int main() {
// try pointer to constant
int a = 1, b = 2;
int const *i = &a;
*i = 5;
i = &b;
// try constant pointer
int * const j = &a;
*j = 5;
j = &b;
// try constant pointer to constant
int const * const k = &a;
*k = 5;
k = &b;
// try constant arguments of functions
int l = 0;
const int m = 0;
copy(l);
copy(m);
copyConst(l);
copyConst(m);
// try constant arguments of functions with pointers
int *p = 0;
const int *r = 0;
write(p);
write(r);
read(p);
read(r);
// try constant method in a class
Test t;
const Test tc;
std::string s("World");
t.hello(s);
tc.hello(s);
t.helloConst(s);
tc.helloConst(s);
}