Example

struct MyObject {
  MyObject(int value):value(value) { }
  MyObject(MyObject const&o):value(o.value) { }

  int value;
};

Assume that the copy constructor does something in addition to be useful. Then

std::function<void()> f() {
  MyObject o;
  std::vector<int> v;
  return [=]() { /* use v and o */ &o; &v; }
}

v and o are first copied into the initial lambda object, which is fine. But then they are again copied everytime the lambda object needs to be moved. Even though v could be moved, but it is not. That's because the lambda does not have an implicit move constructor, because o does not have a move constructor or trivial copy constructor.

Can someone please explain the rationale behind this?

link|improve this question

62% accept rate
1  
It sounds like this is a question defaulted move constructors (and assignment operators?), you might want to include those terms in the question. – Ben Voigt Nov 29 '11 at 22:22
1  
@LokiAstari I assume you mean 2125 – Seth Carnegie Nov 29 '11 at 22:28
3  
Isn't this just the same reason for which a class doesn't get an implicit move constructor if it has an unmovable member? – Kerrek SB Nov 29 '11 at 22:41
1  
I dealt with this issue by wrapping variables in mover class, which moves in non-const copy ctor: groups.google.com/group/comp.lang.c++.moderated/browse_thread/… – Gene Bushuyev Nov 29 '11 at 22:45
1  
I think the rationale is simple, as soon as there is one unmovable member all other cannot be moved or invariant will be broken when they throw. – Gene Bushuyev Nov 29 '11 at 23:11
show 10 more comments
feedback

2 Answers

I seem to recall that this is a compromise between the two extremes, those who did not want implicit generation of move constructors at all, and those that wanted move constructors to be generated automatically in most circumstances.

Among the people that wanted no implicit generation of move constructors, Dave Abrahams wrote an article called Implicit Move Must Go. The rationale there is that under some circumstances, even if the members are movable, the implicit generation of a move constructor can break invariants.

Early this year (2011) the committee decided to keep implicit generation of move constructors in a decision that seemed to emphasize performance boost in existing code over safety issues (1), and again Dave blogged about it. It does not talk about the specifics of the decision, the pros and cons, but is not quite happy with the result either.

Edit (from Jerry Coffin): Here's the list of conditions for implicit declaration of a move constructor:

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 basic idea is that inclusion of any of these in the class is an indication that an implicitly generated move ctor is likely to mis-behave. While that's true, the conditions in the list are neither necessary nor sufficient to the determination, so many move ctors that would have been useful aren't generated, and many that will cause problems can be generated. Worse, the rules are already long and complex enough that few remember them all, and fixing them would probably at least double that.
[end of Jerry's contribution/rant]

(1) Thanks to Gene Bushuyev for the insight as to why the decision was taken

link|improve this answer
1  
I wouldn't call the decision political, I think the consideration that with implicit move a lot of existing code wouldn't need any changes to get a performance boost prevailed over safety. – Gene Bushuyev Nov 29 '11 at 23:29
@dribeas: Hope you don't mind the edit -- I didn't really have a lot to add about the original question, but the number and complexity of conditions under which a move ctor can/will be generated seemed relevant to the objections. It's probably also worth mentioning that the last condition is itself really another list of conditions even longer than those above. – Jerry Coffin Nov 29 '11 at 23:57
@JerryCoffin By no means, I was going to thank you for it, but did not think that a comment with the (at) syntax would notify you :) – David Rodríguez - dribeas Nov 29 '11 at 23:59
feedback

Kinda guessing, but I suspect it may have to do with exceptions. That is, move constructors should really be noexcept, but having a move constructor call a copy constructor could have it throw.

(trying to refresh my memory from here, which I think covered this issue)

EDITED TO ADD:

And my guess was wrong. The correct answer, as far as I can tell, is from here. The presence of the copy constructor is an indication that the class has invariants, and the default generated move constructor might not respect those invariants, and therefor, should not be generated.

link|improve this answer
Ah thanks sir that makes sense. A lambda has no invariants. do you think it should have always a move constructor? – Johannes Schaub - litb Nov 30 '11 at 8:46
If it had todo with exceptions they would not require a trivial copy consttuxtor, but a noexcept copy constructor. – Johannes Schaub - litb Nov 30 '11 at 8:48
Hmm hold on. the presence of a copy constructor of a member indicates that the member has invariants, but those would still be respected because the member will never be moved – Johannes Schaub - litb Nov 30 '11 at 9:23
I don't see why exceptions should matter. If there's an exception, there's an exception, so what. That's just normal behaviour. Move exceptions are predominantly relevant in vector which wants to perform silent moves that mustn't fail. – Kerrek SB Nov 30 '11 at 12:34
feedback

Your Answer

 
or
required, but never shown

Not the answer you're looking for? Browse other questions tagged or ask your own question.