-
Notifications
You must be signed in to change notification settings - Fork 1
/
Copy path58.cpp
64 lines (54 loc) · 927 Bytes
/
58.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
#include <vector>
using std::vector;
#include <iostream>
using std::cout;
using std::endl;
#include <algorithm>
#include <initializer_list>
using std::initializer_list;
class Foo{
public:
Foo(){};
Foo(initializer_list<int> il):data(il) {}
Foo sorted() const &;
Foo sorted() &&;
vector<int> get() { return data; }
private:
vector<int> data;
};
/*
Foo Foo::sorted() const & {
cout << "&" << endl;
Foo ret(*this);
sort(ret.data.begin(), ret.data.end());
return ret;
}
*/
Foo Foo::sorted() const & {
cout << "const &" << endl;
Foo ret(*this);
return ret.sorted();
}
Foo Foo::sorted() && {
sort(data.begin(), data.end());
cout << "&&" << endl;
return *this;
}
int main(){
/*
auto d = Foo({1,8,4,2,0}).sorted();
for(auto i : d.get()){
cout << i << endl;
}
*/
/*
Foo d({1,8,4,2,0});
auto dd = d.sorted();
for(auto i : dd.get()){
cout << i << endl;
}
*/
Foo().sorted();
Foo f;
f.sorted();
}