In addition to the good answers already given regarding the lateness of these rules compared to when vs2010 shipped,
The rules for an implicitly generated move constructor are:
If the definition of a class X does
not explicitly declare a move
constructor, one will be implicitly
declared as defaulted if and only if
- X does not have a user-declared copy constructor,
- X does not have a user-declared copy assignment operator,
- X does not have a user-declared move assignment operator,
- X does not have a user-declared destructor, and
- the move constructor would not be implicitly defined as deleted.
The rules for implicitly generated move assignment operators follows the pattern above.
The rules for when a copy constructor is implicitly generated have changed slightly!
If the class definition does not
explicitly declare a copy constructor,
one is declared implicitly. If the
class definition declares a move
constructor or move assignment
operator, the implicitly declared copy
constructor is defined as deleted;
otherwise, it is defined as defaulted
(8.4). The latter case is deprecated
if the class has a user-declared copy
assignment operator or a user-declared
destructor.
And similarly for the copy assignment operator:
If the class definition does not
explicitly declare a copy assignment
operator, one is declared implicitly.
If the class definition declares a
move constructor or move assignment
operator, the implicitly declared copy
assignment operator is defined as
deleted; otherwise, it is defined as
defaulted (8.4). The latter case is
deprecated if the class has a
user-declared copy constructor or a
user-declared destructor.
Bottom line: The rule of 3 is now the rule of 5. You can either ignore all 5 (if the default behavior works for you), or you need to think about (and likely define) all 5:
- copy constructor
- copy assignment
- move constructor
- move assignment
- destructor