I have a code:
void f(int&& i) {
auto lambda = [](int&& j) { (void)j; }
lambda(i);
}
int main() {
f(5);
}
Clang++ gives an error: no known conversion from 'int' to 'int &&' for 1st argument
Why the i
changes its type to int
when being passed to the lambda()
?
There are two elements at work here:
i
has typeint&&
, or "rvalue reference toint
", where "rvalue reference" is the name for the&&
feature, allowing binding rvalues to a reference;i
has a name and so the expression naming it is an lvalue, regardless of its type or what the standard committee decided to call that type. :)(Note that the expression that looks like
i
has typeint
, notint&&
, because reasons. The rvalue ref is lost when you start to use the parameter, unless you use something likestd::move
to get it back.)i
is a name, and any object accessed by name is automatically an LValue, even though your parameter is marked as an rvalue reference. You can casti
back to an rvalue by usingstd::move
orstd::forward
i
is of typeint&&
, that is, it's of type "rvalue reference toint
." However, note thati
itself is an lvalue (because it has a name). And as an lvalue, it cannot bind to a "reference to rvalue."To bind it, you must turn it back to an rvalue, using
std::move()
orstd::forward()
.To expand a bit: the type of an expression and its value category are (largely) independent concepts. The type of
i
isint&&
. The value category ofi
is lvalue.