我正在阅读有关完美转发的内容,这是我学到的让我感到困惑的事情:
当您尝试实现完美转发时,您将执行以下操作:
template<class T> // If I were to call foo with an l-value int, foo would look
void foo(T &&x); // like this: void foo(int& &&x)
所以我想,等等,这是否意味着如果我这样做:
template<class T> // If I were to call foo with an l-value int, foo would look
void foo(T x); // like this: void foo(int& x);
但事实并非如此。foo看起来像这样:void foo(int x);
我的问题:为什么在完美的转发功能中,T 变成了 T& 或 T&&,但在另一个中,T 不是参考?有人能告诉我这个的确切规则吗?我需要澄清一下!