I am trying some new C++11 features on visual studio 11, started with the move constructor. I wrote a simple class called "MyClass" containing a move constructor:
class MyClass { public: explicit MyClass( int aiCount ) : mpiSize( new int( aiCount ) ), miSize2( aiCount) { } MyClass( MyClass&& rcOther ) : mpiSize( rcOther.mpiSize ) , miSize2( *rcOther.mpiSize ) { rcOther.mpiSize = 0; rcOther.miSize2 = 0; } ~MyClass() { delete mpiSize; } private: int *mpiSize; int miSize2; };
I got there questions here:
If a copy constructor, copy-assignment operator, move constructor, move-assignment operator, or destructor is explicitly declared, then: No move constructor is automatically generated. No move-assignment operator is automatically generated.
A move constructor is executed only when you construct an object. A move assignment operator is executed on a previously constructed object. It is exactly the same scenario as in the copy case.
MSVC++ implemented move constructors before the final version of the standard was out. In the version of the standard MSVC++'s implementation was based on, the rules for generating a default move constructor were ridiculously more strict than they are in the final version of the standard. See here: Why is this code trying to call the copy constructor? (specifically this answer and the comments on it) for more info on that. This has not been and will not be fixed in Visual Studio 11, for some unknown stupid reason because they had other priorities.
No, you need to call std::move
on the members of rcOther
, and you initialise members with the corresponding members from the dying object (you misnamed miSize
):
MyClass( MyClass&& rcOther ) : mpiSize( std::move(rcOther.mpiSize) ) , miSize2( std::move(rcOther.miSize2) ) { rcOther.mpiSize = 0; }
It doesn't make a difference for built in types like int
and int*
, but it definitely makes a difference for user-defined types.
std::move
just returns the argument casted into a T&&
, an rvalue-reference, so that the correct constructor (the move constructor, T(T&&)
) is called for each of the sub-objects. If you don't use std::move
on the members of the dying object, they will be treated like T&
, and the copy constructor of your subobjects (T(T&)
) will be called instead of the move constructor. That is very bad and thwarts almost the entire purpose of you having written a move constructor.
3. You are doing some unnecessary things, like setting the integer to 0. You only need to set the pointer to 0 so that delete
ing it won't delete the resource of the new object you created.
Also, if this is not a didactic exercise, you may want to consider using std::unique_ptr
instead of managing the lifetime of your own object. This way you don't even have to write a destructor for your class. Note that if you do that, using std::move
to initialise the member from the dying member in the move constructor would be mandatory.
The compiler does generate a move constructor if you don’t do so – after a fashion. However, the compiler cannot second-guess your motives so it doesn’t know what the pointer in your class does. In particular, it doesn’t know that the pointer confers ownership of memory and needs to be nulled out.
The move constructor is correct1 but the rest of the class isn’t, you are violating the rule of three: your class needs an appropriate copy constructor and copy assignment operator.
A better way to write the move constructor looks as follows:
MyClass(MyClass&& rcOther) : mpiSize(std::move(rcOther.mpiSize)) , miSize2(std::move(rcOther.miSize2)) { rcOther.mpiSize = 0; }
Two comments:
rcOther.mpiSize
? While this isn’t wrong, it also makes no sense and is misleading.But an even better way is to rely on pre-existing facilities. In this case, you want to model memory ownership. A naked pointer does this poorly, you should use a std::unique_ptr
instead. This way, you don’t need to implement either destructor nor move constructor since the the auto-generated methods do the right thing.
1Caveat: See Seth’s answer for a better explanation that mentions std::move
(which is a no-op in this particular case, however).
If you love us? You can donate to us via Paypal or buy me a coffee so we can maintain and grow! Thank you!
Donate Us With