C++11 新特性之右值引用与移动
<p>前六篇在这里:</p> <p>C++11新特性之新类型与初始化: <a href="/misc/goto?guid=4959677039680009737" rel="nofollow,noindex">http://blog.guoyb.com/2016/06/18/cpp11-1</a></p> <p>C++11新特性之类型推断与类型获取: <a href="/misc/goto?guid=4959677039760575945" rel="nofollow,noindex">http://blog.guoyb.com/2016/06/25/cpp11-2</a></p> <p>C++11新特性之lambda: <a href="/misc/goto?guid=4959677039838059271" rel="nofollow,noindex">http://blog.guoyb.com/2016/06/30/cpp11-3</a></p> <p>C++11新特性之容器相关特性: <a href="/misc/goto?guid=4959677039938289763" rel="nofollow,noindex">http://blog.guoyb.com/2016/07/09/cpp11-4</a></p> <p>C++11新特性之智能指针: <a href="/misc/goto?guid=4959677040018591533" rel="nofollow,noindex">http://blog.guoyb.com/2016/08/02/cpp11-5</a></p> <p>C++11新特性之Class: <a href="/misc/goto?guid=4959677040100134120" rel="nofollow,noindex">http://blog.guoyb.com/2016/08/14/cpp11-6</a></p> <p>这是C++11新特性介绍的第七部分,涉及到左右值引用、移动构造、移动赋值、完美转发等。</p> <p>不想看toy code的读者可以直接拉到文章最后看这部分的总结。</p> <h2>右值引用</h2> <p>右值是一个行将销毁的值,例如(i * 10)这种表达式的值。新标准中允许通过&&标识定义一个右值引用,将其绑定到一个右值上。但是,一个右值引用 <strong>变量</strong> 又是一个左值,因为它是一个变量了嘛。</p> <pre> std::cout<<"test rvalue reference:\n"; int j = 42; int &lr = j; //int &&rr = j; // Wrong. Can't bind a rvalue ref to a lvalue. //int &lr2 = i * 42; // Wrong. Can't bind a lvalue ref to a rvalue. const int &lr3 = j * 42; int &&rr2 = j * 42; //int &&rr3 = rr2; // Wrong. rr2 is a rvalue ref and rvalue ref is a lvalue. int &lr4 = rr2; std::cout<<j<<'\t'<<lr<<'\t'<<lr3<<'\t'<<rr2<<'\t'<<lr4<<std::endl; std::cout<<"test rvalue ref done.\n"<<std::endl; </pre> <h2>std::move</h2> <p>std::move函数的作用很简单,就是获得一个左值的右值引用,这样我们就找到了一种途径将一个右值引用绑定到一个左值上。</p> <p>但是,使用std::move也意味着交出左值的控制权,之后就不能再使用这个左值了,因为使用std::move之后,无法对这个左值做任何保证。</p> <pre> std::cout<<"test std::move:\n"; std::string str5 = "asdf"; std::string &lr5 = str5; std::string &&rr5 = std::move(str5); rr5[0] = 'b'; lr5[1] = 'z'; std::cout<<rr5<<'\t'<<lr5<<'\t'<<str5<<std::endl; std::cout<<"test std::move done.\n"<<std::endl; </pre> <h2>移动构造</h2> <p>新标准中一些内置类型(如string)都实现了移动构造函数。所谓移动构造,就是接受一个右值引用,从而接受该右值引用所引用的对象,而没有实际的大块内存拷贝操作(可以想象成只拷贝了一个指针而不是整块的内存)。调用移动构造函数的关键是要传入一个相应的右值引用,这时上面提到的std::move函数就派上用场了。</p> <pre> std::cout<<"test move constructor:\n"; std::allocator<std::string> alloc; size_t size = 5; auto old_strs = alloc.allocate(size); for(size_t i = 0; i < size; i++) { alloc.construct(old_strs + i, "abcde"); } std::cout<<"old_strs[0]: "<<old_strs[0]<<std::endl; auto new_strs = alloc.allocate(size); for(size_t i = 0; i < size; i++) { alloc.construct(new_strs + i, std::move(*(old_strs + i))); } std::cout<<"new_strs[0]: "<<new_strs[0]<<std::endl; std::cout<<"old_strs[0]: "<<old_strs[0]<<std::endl; for(size_t i = 0; i < size; i++) { alloc.destroy(old_strs + i); } alloc.deallocate(old_strs, size); std::cout<<"test move constructor done.\n"<<std::endl; </pre> <p>调用移动构造函数之后,右值引用所绑定的对象保证可析构可销毁的状态。</p> <h2>定义自己的移动构造函数</h2> <p>上面说到了,移动构造函数的关键是接受一个右值引用, <strong>窃取</strong> 该对象的内容为己所用(不拷贝),并且保证被窃取的对象保持可析构可销毁的状态。那么,我们当然可以定义一个自己的移动构造函数。</p> <p>一个整型数组的定义如下:</p> <pre> class IntVec { public: IntVec() = default; IntVec(size_t capacity); IntVec(IntVec &rhs); IntVec(IntVec &&rhs) noexcept; IntVec &operator=(IntVec &&rhs) & noexcept; ~IntVec(); int push_back(int val); void print_info(); size_t capacity; size_t size; int *pointer; }; </pre> <p>其中各个函数的定义为:</p> <pre> IntVec::IntVec(IntVec &rhs) { this->capacity = rhs.capacity; this->size = rhs.size; this->pointer = new int[this->capacity]; for(size_t i = 0; i < size; i++) this->pointer[i] = rhs.pointer[i]; std::cout<<"IntVect copy constructor.\n"; } IntVec::IntVec(size_t capacity) : capacity(capacity), size(0) { this->pointer = new int[capacity]; } IntVec::IntVec(IntVec &&rhs) noexcept : capacity(rhs.capacity), size(rhs.size), pointer(rhs.pointer) { rhs.pointer = nullptr; rhs.capacity = rhs.size = 0; std::cout<<"IntVect move constructor.\n"; } IntVec &IntVec::operator=(IntVec &&rhs) & noexcept { if(this != &rhs) { if(this->pointer) delete [] this->pointer; this->pointer = rhs.pointer; this->capacity = rhs.capacity; this->size = rhs.size; rhs.pointer = nullptr; rhs.capacity = rhs.size = 0; } std::cout<<"IntVect move assign constructor.\n"; return *this; } IntVec::~IntVec() { if(this->pointer) delete [] this->pointer; } </pre> <p>push_back和print_info的定义就不赘述了。</p> <p>可以看到,在移动构造函数里,只需要 <strong>窃取</strong> 指针及其状态,并将右值引用对象的状态重置,即可完成移动构造的操作。</p> <p>同样的,我们还可以定义移动赋值运算。</p> <p>值得注意的是,两个移动函数都添加了noexcept标识符。这也是C++11新标准中引入的,用于向标准库指明此函数不会抛出异常,以避免标准库在和我们定义的这个类进行交互时做一些不必要的工作。如果我们不承诺noexcept,那么当标准库容器扩展容量时,就不能调用移动构造函数来 <strong>移动</strong> 容器内的现存元素,而只能采取比较耗费资源的拷贝构造函数。</p> <p>这一部分的测试代码如下:</p> <pre> std::cout<<"test custom move copy constructor/move assign operator.\n"; IntVec iv1(10); for(size_t i = 0; i < 5; i++) iv1.push_back(i); std::cout<<"-------iv1:\n"; iv1.print_info(); IntVec iv2(std::move(iv1)); std::cout<<"-------iv2:\n"; iv2.print_info(); std::cout<<"-------iv1:\n"; iv1.print_info(); IntVec iv3 = iv2; std::cout<<"-------iv3:\n"; iv3.print_info(); std::cout<<"-------iv2:\n"; iv2.print_info(); IntVec iv4(5); std::cout<<"-------iv4:\n"; iv4.print_info(); iv4 = std::move(iv2); std::cout<<"-------iv4:\n"; iv4.print_info(); std::cout<<"-------iv2:\n"; iv2.print_info(); std::cout<<"test custom move copy constructor/move assign operator done.\n"<<std::endl; </pre> <h2>移动迭代器</h2> <p>新标准中提供了std::make_move_iterator函数用于从普通迭代器获得移动迭代器。对移动迭代器解引用将会获得对应的右值引用,从而方便的对整个容器进行移动操作。</p> <pre> std::cout<<"test move iterator:\n"; auto new_strs2 = alloc.allocate(size); std::uninitialized_copy(std::make_move_iterator(new_strs), std::make_move_iterator(new_strs + size), new_strs2); std::cout<<"new_strs[0]: "<<new_strs[0]<<std::endl; std::cout<<"new_strs2[0]: "<<new_strs2[0]<<std::endl; for(size_t i = 0; i < size; i++) { alloc.destroy(new_strs + i); } alloc.deallocate(new_strs, size); std::cout<<"test move iterator done.\n"<<std::endl; </pre> <h2>引用折叠规则</h2> <p>当左右引用遇到模板参数的时候,需要用到引用折叠规则来获得最终的模板推断类型和形参类型。</p> <pre> template <typename T> void vague_func(T&& val) { std::cout<<"val: "<<val<<std::endl; T val2 = val; val2++; std::cout<<"val2: "<<val2<<'\t'<<"val: "<<val<<std::endl; } std::cout<<"test ref folding:\n"; int val = 2; int &lref = val; int &&rref = 2; std::cout<<"-------with val:\n"; vague_func(2); std::cout<<"-------with lref:\n"; vague_func(lref); std::cout<<"-------with rref:\n"; vague_func(rref); vague_func(std::move(val)); std::cout<<"test ref done.\n"<<std::endl; </pre> <p>在上述vague_func中,虽然val的类型是T&&,看上去是个右值引用,但是实际上也是可以接受左值引用的类型的。当传入一个左值时,如lref,编译器会推断T = int&而不是T = int。那么这时实际实例化的vague_func实际是:</p> <p>void vague_func(int& && val)</p> <p>根据引用折叠规则,除了T&& &&折叠为T&&之外的所有情况均折叠为T&,那么最终vague_func为:</p> <p>void vague_func(int& val)</p> <p>因此,vague_func也可以接受一个左值实参。这种引用折叠规则,也是std::move得以实现的基础,有兴趣的读者可以自行去了解下其实现,就一行代码^o^</p> <p>但是,vague_func的模板类型推断规则,也造成了T类型的不确定(int还是int&?),这给后续的编码也带来了困难。</p> <h2>std::forward</h2> <p>在上述vague_func中,如果传入一个右值,但是val却是一个变量,也就是一个左值。那么如何保持原来实参的类型信息呢,这时需要用到std::forward。</p> <p>std::forward</p> <p>(val)返回类型是T&&,这时,根据折叠规则,如果实参val是个左值,则返回T&;如果是右值,则返回T&&。</p> <pre> void f(int &&i) { std::cout<<i<<"\t i is a right ref.\n"; } void g(int &i) { std::cout<<i<<"\t i is a left ref.\n"; } template <typename F, typename T> void forward_func(F f, T&& val) { f(std::forward<T>(val)); } std::cout<<"test forward:\n"; forward_func(f, 5); forward_func(g, rref); forward_func(g, val); std::cout<<"test forward done.\n"<<std::endl; </pre> <p> </p> <h2>程序输出</h2> <p>程序的整体输出如下:</p> <pre> test move constructor: old_strs[0]: abcde new_strs[0]: abcde old_strs[0]: test move constructor done. test rvalue reference: 42 42 1764 1764 1764 test rvalue ref done. test std::move: bzdf bzdf bzdf test std::move done. test custom move copy constructor/move assign operator. -------iv1: capacity: 10 size: 5 pointer: 0x1523160 IntVect move constructor. -------iv2: capacity: 10 size: 5 pointer: 0x1523160 -------iv1: capacity: 0 size: 0 pointer: nullptr IntVect copy constructor. -------iv3: capacity: 10 size: 5 pointer: 0x1523190 -------iv2: capacity: 10 size: 5 pointer: 0x1523160 -------iv4: capacity: 5 size: 0 pointer: 0x15231c0 IntVect move assign constructor. -------iv4: capacity: 10 size: 5 pointer: 0x1523160 -------iv2: capacity: 0 size: 0 pointer: nullptr test custom move copy constructor/move assign operator done. test move iterator: new_strs[0]: new_strs2[0]: abcde test move iterator done. test ref folding: -------with val: val: 2 val2: 3 val: 2 -------with lref: val: 2 val2: 3 val: 3 -------with rref: val: 2 val2: 3 val: 3 val: 3 val2: 4 val: 3 test ref done. test forward: 5 i is a right ref. 3 i is a left ref. 3 i is a left ref. test forward done. </pre> <h2>总结</h2> <ol> <li>新标准中允许通过&&标识定义一个右值引用,将其绑定到一个右值上。</li> <li>std::move函数的作用是获得一个变量的右值引用。</li> <li>移动构造,就是接受一个右值引用,从而接受(窃取)该右值引用所引用的对象,而没有实际的大块内存拷贝操作,并且保证被窃取后的对象可析构可销毁。</li> <li>可以定义自己的移动构造函数以及移动赋值运算。</li> <li>noexcept用于向标准库指明此函数不会抛出异常。声明移动构造函数和移动赋值运算为noexcept以避免标准库在和我们定义的这个类进行交互时做一些不必要的工作。</li> <li>新标准中提供了std::make_move_iterator函数用于从普通迭代器获得移动迭代器。对移动迭代器解引用将会获得对应的右值引用,从而方便的对整个容器进行移动操作。</li> <li>引用折叠规则,除了T&& &&折叠为T&&之外的所有情况均折叠为T&,主要用于模板类型推断中。</li> <li>std::forward (val)用于保持实参的左右值信息。</li> </ol> <p>完整代码详见 <a href="/misc/goto?guid=4959677040177059757" rel="nofollow,noindex">move_and_forward.cpp</a></p> <p>转载请注明出处: <a href="/misc/goto?guid=4959677040247867578" rel="nofollow,noindex">http://blog.guoyb.com/2016/08/20/cpp11-7/</a></p> <p>欢迎使用微信扫描下方二维码,关注我的微信公众号TechTalking,技术·生活·思考:</p> <p><img src="https://simg.open-open.com/show/c0aa8b1fd1cb404d4819286d7bca9d7c.png"></p> <p> </p> <p>来自:http://blog.guoyb.com/2016/08/20/cpp11-7/</p> <p> </p>
本文由用户 rrix8589 自行上传分享,仅供网友学习交流。所有权归原作者,若您的权利被侵害,请联系管理员。
转载本站原创文章,请注明出处,并保留原始链接、图片水印。
本站是一个以用户分享为主的开源技术平台,欢迎各类分享!