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 92 93 94 95 96 97 98 99 100 101 102 103 104 105 106 107 108 109 110 111 112 113 114 115 116 117 118 119 120 121 122 123 124 125 126 127 128 129 130 131 132 133 134 135 136 137 138 139 140 141 142 143 144 145 146 147 148 149 150 151 152 153 154 155 156 157 158 159 160 161 162 163 164 165 166 167 168 169 170 171 172 173 174 175 176 177 178 179 180 181 182 183 184 185 186 187 188 189 190 191 192
| #include <iostream> #include <stdio.h>
#include <utility> #include <vector> #include <string>
class MemoryBlock { public:
explicit MemoryBlock(size_t length) : _length(length) , _data(new int[length]) { std::cout << "In MemoryBlock(size_t). length = " << _length << "." << std::endl; }
~MemoryBlock() { std::cout << "In ~MemoryBlock(). length = " << _length << ".";
if (_data != nullptr) { std::cout << " Deleting resource."; delete[] _data; }
std::cout << std::endl; }
MemoryBlock(const MemoryBlock& other) : _length(other._length) , _data(new int[other._length]) { std::cout << "In MemoryBlock(const MemoryBlock&). length = " << other._length << ". Copying resource." << std::endl;
std::copy(other._data, other._data + _length, _data); }
MemoryBlock& operator=(const MemoryBlock& other) { std::cout << "In operator=(const MemoryBlock&). length = " << other._length << ". Copying resource." << std::endl;
if (this != &other) { delete[] _data;
_length = other._length; _data = new int[_length]; std::copy(other._data, other._data + _length, _data); } return *this; }
size_t Length() const { return _length; }
MemoryBlock(MemoryBlock&& other) : _data(nullptr) , _length(0) { std::cout << "In MemoryBlock(MemoryBlock&&). length = " << other._length << ". Moving resource." << std::endl;
_data = other._data; _length = other._length;
other._data = nullptr; other._length = 0; }
MemoryBlock& operator=(MemoryBlock&& other) { std::cout << "In operator=(MemoryBlock&&). length = " << other._length << "." << std::endl;
if (this != &other) { delete[] _data;
_data = other._data; _length = other._length;
other._data = nullptr; other._length = 0; } return *this; }
private: size_t _length; int* _data; };
void TestSTLObject() { std::string str = "Hello"; std::vector<std::string> v;
v.push_back(str); std::cout << "After copy, str is \"" << str << "\"\n";
v.push_back(std::move(str)); std::cout << "After move, str is \"" << str << "\"\n";
std::cout << "The contents of the vector are \"" << v[0] << "\", \"" << v[1] << "\"\n";
}
void TestMyObjectWithoutUseMove() { std::vector<MemoryBlock> v; MemoryBlock mb1(25);
v.push_back(mb1);
}
void TestMyObjectWithUseMove() { std::vector<MemoryBlock> v;
MemoryBlock mb1(25);
v.push_back(std::move(mb1));
}
int main(int argc, char const *argv[]) { TestMyObjectWithUseMove(); return 0; }
|