This is the code from C++11 Notes Sample by Scott Meyers,
int x;
auto&& a1 = x; // x is lvalue, so type of a1 is int&
auto&& a2 = std::move(x); // std::move(x) is rvalue, so type of a2 is int&&
I am having trouble understanding auto&&.
I have some understanding of auto, from which I would say that auto& a1 = x should make type of a1 as int&
Which from Quoted code, seems wrong.
I wrote this small code, and ran under gcc.
#include <iostream>
using namespace std;
int main()
{
int x = 4;
auto& a1 = x; //line 8
cout << a1 << endl;
++a1;
cout << x;
return 0;
}
Output = 4 (newline) 5
Then I modified line 8 as auto&& a1 = x;, and ran. Same output.
My question : Is auto& equal to auto&&?
If they are different what does auto&& do?
auto&andauto&&are equivalent if rhs is a lvalue.auto&will give you an error if rhs is an rvalue. – balki Feb 6 '12 at 15:52auto&&variable means the same as aT&¶meter in a function template. – FredOverflow Feb 6 '12 at 17:13