What is R-Value reference that is about to come in next c++ standard?
|
|
Take a look at http://stackoverflow.com/questions/844241/why-are-c0x-rvalue-reference-not-the-default , which explains their practical use fairly well. |
|||
|
|
|
It allows you to distinguish between code that has called you passing a reference to an r-value or an l-value. For example:
By using an r-value reference, we can allow to pass in references to temporaries such as in the first example above:
This is more interesting when we are wanting to pass the return value of a function that creates an object to another function which uses that object.
The move constructor acts like the copy constructor, but it is defined to take an r-value reference rather than an l-value (const) reference. It is allowed to use r-value semantics to move the data out of the temporary created in |
||||
|