-
Notifications
You must be signed in to change notification settings - Fork 5
Expand file tree
/
Copy pathRValueLValue.cpp
More file actions
84 lines (59 loc) · 2.17 KB
/
RValueLValue.cpp
File metadata and controls
84 lines (59 loc) · 2.17 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
75
76
77
78
79
80
81
82
83
84
// =====================================================================================
// LValue / RValue
// =====================================================================================
module modern_cpp:rvalue_lvalue;
namespace LValueRValue {
// lvalue reference
static void sayHello(const std::string& message) {
std::println("sayHello [std::string&]: {}", message);
}
// rvalue reference
static void sayHello(std::string&& message) {
std::println("sayHello [std::string&&]: {}", message);
}
static void test01() {
std::string a = "Hello";
std::string b = " World";
sayHello(a);
sayHello(a + b);
}
// -------------------------------------------------------------------
static void helper(std::string&& message)
{
sayHello(message);
// sayHello(std::move(message)); // casting an lvalue to an rvalue
}
static void test02()
{
helper(std::string("Where are we going ..."));
}
// -------------------------------------------------------------------
static void test03() {
std::string s = "Hello";
sayHello(s);
// versus
sayHello(std::move(s)); // casts an lvalue to an rvalue
}
// -------------------------------------------------------------------
static void test04() {
int a = 2;
int b = 3;
int& ri = a; // works: (lvalue) reference to a (named) variable
// int& i = 123; // invalid: (lvalue) reference to a constant
int&& i = 123; // works: (rvalue) reference to a constant
const int& j = 123; // works: const references binds to everything
// int& k = a + b; // invalid: (lvalue) reference to a temporary object
int&& k = a + b; // works: (rvalue) reference to a temporary object
}
}
void main_rvalue_lvalue()
{
using namespace LValueRValue;
test01();
test02();
test03();
test04();
}
// =====================================================================================
// End-of-File
// =====================================================================================