In C++11 we can define copy and move constructors, but are both allowed on the same class? If so, how do you disambiguate their usage? For example:
Foo MoveAFoo() {
Foo f;
return f;
}
Is the above a copy? A move? How do I know?
|
|
Usually it will be neither due to NRVO. If that optimisation can't be performed, then it will be a move, because the object being returned is going out of scope (and will be destroyed just after). If it can't be moved, then it will be copied. If it can't be copied, it won't compile. The whole point of move constructors is that when a copy is going to be made of an object that is just about to be destroyed, it is often unnecessary to make a whole copy, and the resources can be moved from the dying object to the object being created instead. You can tell when either the copy or move constructor is going to be called based on what is about to happen to the object being moved/copied. Is it about to go out of scope and be destructed? If so, the move constructor will be called. If not, the copy constructor. Naturally, this means you may have both a move constructor and copy constructor in the same class. You can also have a copy assignment operator and a move assignment operator as well. Update: It may be unclear as to exactly when the move constructor/assignment operator is called versus the plain copy constructor/assignment operator. If I understand correctly, the move constructor is called if an object is initialised with an xvalue (eXpiring value). §3.10.1 of the standard says
And the beginning of §5 of the standard says:
As an example, if NRVO can be done, it's like this:
If NRVO can't be done but
And if it can't be moved but it can be copied, then it's like this
|
|||||||||||
|
|
To back up @Seth, here's the relevant paragraph from the standard:
|
|||||||||||
|
This is definition of function In this code:
object But in this code:
object |
|||
|
|
|
The "disambiguation" is just your old friend, overload resolution:
The expression In your example, the result of Finally, in a function returning |
|||||||||||
|