forked from Light-City/CPlusPlusThings
-
Notifications
You must be signed in to change notification settings - Fork 0
/
rvalue.cpp
91 lines (73 loc) · 2.44 KB
/
rvalue.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
//
// Created by light on 19-11-4.
//
#include <iostream>
#include <complex>
#include <vector>
using namespace std;
// Rvalue references 解决非必要的拷贝 当赋值右手边是一个"右值",左手边对象可以偷右手边对象,而不需要重新分配内存。
// 浅copy
int foo() { return 5; }
class Foo {
public:
Foo() = default;
Foo(const Foo &foo) = default;
Foo(Foo &&foo) noexcept {}
};
// 判断调用哪一个函数
void process(int &i) {
cout << "左值传入" << endl;
}
void process(int &&i) {
cout << "右值传入" << endl;
}
void UnPerfectForward(int &&i) {
cout << "forward(int&& i)" << endl;
process(i);
}
// std::forward()实现就是下面这样
void PerfectForward(int &&i) {
cout << "forward(int&& i)" << endl;
process(static_cast<int&&>(i));
}
// Lvalue: 变量
// Rvalue: 临时对象就是个右值,右值不可以放在左边
int main() {
int a = 9, b = 4;
a = b;
b = a;
// a+b=42;// error Rvalue
string s1("hello");
string s2("world");
s1 + s2 = s2; // ok
string() = "ok"; // ok
cout << "s2:" << s1 + s2 << endl;
cout << "s1:" << s1 << endl;
cout << "s2:" << s2 << endl;
complex<int> c1(3, 8), c2(1, 0);
c1 + c2 = complex<int>(3, 4); // ok
complex<int>() = complex<int>(1, 2); // ok
int x = foo();
// int *p=&foo(); //error! Rvalue不可以取地址
// foo()=7; // error
// Rvalue references
// vector<Foo> vec;
// vec.insert(vec.begin(), Foo()); // Rvalue references and Move Semantics
// 原先是下面这个
// iterator insert(const_iterator __position, const value_type& __x);
// 调用下面这个Move Semantics
// iterator insert(const_iterator __position, value_type&& __x) // 然后转交给Foo(Foo&& foo)
// { return emplace(__position, std::move(__x)); }
// Foo()这个临时对象为右值交给insert的move assignment然后再交给Foo的move ctor。中间有可能会丢失一些信息。
int aa = 1;
process(aa); // L
process(1); // R
process(move(aa)); // R
UnPerfectForward(2); // 希望通过转交调用的是右值传入函数,可是调用的是左值传入 这就是个Unperfect Forwarding
UnPerfectForward(move(aa)); // 同上
// 那如何设计Perfect Forwarding?
// 为传递加上static_cast<int &&>强转或者直接使用std::forward()
PerfectForward(2);
PerfectForward(move(aa));
return 0;
}