十年网站开发经验 + 多家企业客户 + 靠谱的建站团队
量身定制 + 运营维护+专业推广+无忧售后,网站问题一站解决
这篇文章主要介绍“C++使用X&&传递会发生什么”,在日常操作中,相信很多人在C++使用X&&传递会发生什么问题上存在疑惑,小编查阅了各式资料,整理出简单好用的操作方法,希望对大家解答”C++使用X&&传递会发生什么”的疑惑有所帮助!接下来,请跟着小编一起来学习吧!
我们提供的服务有:做网站、网站制作、微信公众号开发、网站优化、网站认证、常宁ssl等。为上千余家企事业单位解决了网站和推广的问题。提供周到的售前咨询和贴心的售后服务,是有科学管理、有技术的常宁网站制作公司
It's efficient and eliminates bugs at the call site: X&&
binds to rvalues, which requires an explicit std::move
at the call site if passing an lvalue.
对于调用者可以提供高效和排除bug的可能性:X&&绑定一个右值,当调用者传递左值是需要使用清楚的std::move操作。Example(示例)
void sink(vector&& v) { // sink takes ownership of whatever the argument owned // usually there might be const accesses of v here store_somewhere(std::move(v)); // usually no more use of v here; it is moved-from}
Note that the std::move(v)
makes it possible for store_somewhere()
to leave v
in a moved-from state.That could be dangerous.
注意:std::move造成store_somewhere执行后,v变成移动后状态。这可能很危险。
译者注:危险在于移动后对象处于无效状态,一旦被使用则任何事情都可能发生。
独占所有权类型只用于移动而且移动的成本很低,例如unique_ptr,可以使用容易编写且(和移动操作)效果相同的传值方式。传值确实会生成一个额外的(低成本的)移动操作,但是这里优先选择简单和清晰。
templatevoid sink(std::unique_ptr p) { // use p ... possibly std::move(p) onward somewhere else} // p gets destroyed
Flag all X&&
parameters (where X
is not a template type parameter name) where the function body uses them without std::move
.
提示所有函数体中没有对其使用std::move操作的X&&参数(这里X不是模板类型参数名)。
Flag access to moved-from objects.
提示对移动后对象的访问。
Don't conditionally move from objects
不要有条件对对象实施移动操作。
到此,关于“C++使用X&&传递会发生什么”的学习就结束了,希望能够解决大家的疑惑。理论与实践的搭配能更好的帮助大家学习,快去试试吧!若想继续学习更多相关知识,请继续关注创新互联网站,小编会继续努力为大家带来更多实用的文章!