本文介绍了右值参考参数和模板功能的处理方法,对大家解决问题具有一定的参考价值,需要的朋友们下面随着小编来一起学习吧!

问题描述

如果我定义一个接受右值引用参数的函数:

If I define a function which accepts an rvalue reference parameter:

 c始终为 int& (没有模板推导规则可将其强制转换为其他值),并且只能绑定到右值。

Contrarily, int&& is always int&& (no template deduction rules to coerce it to something else), and can only bind to rvalues.

这篇关于右值参考参数和模板功能的文章就介绍到这了,希望我们推荐的答案对大家有所帮助,也希望大家多多支持!

08-01 02:14