Came across a proposal called "rvalue reference for *this" in clang's C++11 status page.
I've read quite a bit about rvalue references and understood them, but I don't think I know about this. I also couldn't find much resources on the web using the terms.
There's a link to the proposal paper on the page: N2439 (Extending move semantics to *this), but I'm also not getting much examples from there.
What is this feature about?
First, "ref-qualifiers for *this" is a just a "marketing statement". The type of
*this
never changes, see the bottom of this post. It's way easier to understand it with this wording though.Next, the following code chooses the function to be called based on the ref-qualifier of the "implicit object parameter" of the function†:
Output:
The whole thing is done to allow you to take advantage of the fact when the object the function is called on is an rvalue (unnamed temporary, for example). Take the following code as a further example:
This may be a bit contrived, but you should get the idea.
Note that you can combine the cv-qualifiers (
const
andvolatile
) and ref-qualifiers (&
and&&
).Note: Many standard quotes and overload resolution explanation after here!
† To understand how this works, and why @Nicol Bolas' answer is at least partly wrong, we have to dig in the C++ standard for a bit (the part explaining why @Nicol's answer is wrong is at the bottom, if you're only interested in that).
Which function is going to be called is determined by a process called overload resolution. This process is fairly complicated, so we'll only touch the bit that is important to us.
First, it's important to see how overload resolution for member functions works:
§13.3.1 [over.match.funcs]
Why do we even need to compare member and non-member functions? Operator overloading, that's why. Consider this:
You'd certainly want the following to call the free function, don't you?
That's why member and non-member functions are included in the so-called overload-set. To make the resolution less complicated, the bold part of the standard quote exists. Additionally, this is the important bit for us (same clause):
(The last bit just means that you can't cheat overload resolution based on implicit conversions of the object a member function (or operator) is called on.)
Let's take the first example at the top of this post. After the aforementioned transformation, the overload-set looks something like this:
Then the argument list, containing an implied object argument, is matched against the parameter-list of every function contained in the overload-set. In our case, the argument list will only contain that object argument. Let's see how that looks like:
If, after all overloads in the set are tested, only one remains, the overload resolution succeeded and the function linked to that transformed overload is called. The same goes for the second call to 'f':
Note however that, had we not provided any ref-qualifier (and as such not overloaded the function), that
f1
would match an rvalue (still§13.3.1
):Now, onto why @Nicol's answer is atleast partly wrong. He says:
That is wrong,
*this
is always an lvalue:§5.3.1 [expr.unary.op] p1
§9.3.2 [class.this] p1