When I initialize a STL container such as a list< vector<char> > using e.g. my_list.push_back(vector<char>(5000, 'T')) is this copied after construction? Or does the compiler invoke the constructor inside list< vector<char> > itself?

link|improve this question

feedback

2 Answers

up vote 7 down vote accepted

In C++03 push_back is defined as void push_back(const T& x);. That means that you are constructing a vector and a const reference to such temporal is being passed to the list. Then the list internally invokes the copy constructor in order to store a copy of such element.

In C++11 there is an extra definition for void push_back(T&& x); that takes an rvalue reference to your temporal vector, and would result in the move constructor being called internally to initialize the copy held by the list.

link|improve this answer
2  
So, in other words, Microsoft Visual C++ 2010 and up don't copy? – unixman83 Sep 29 '11 at 19:57
@unixman83: That's not defined by the compiler, but by the implementation of the standard library. Is my understanding that VC++10 implements rvalue references so I would expect it to do a move construction instead of a copy construction. – K-ballo Sep 29 '11 at 19:58
I use MSVC 2008, that's why I am wondering. – unixman83 Sep 29 '11 at 19:59
2  
@unixman83: VC++9 would certainly result in a copy construction. – K-ballo Sep 29 '11 at 20:00
feedback

Compilers are smart. Really smart. In this case, there is an optimization called "copy elision." The C++ standard allows the compiler to omit a copy when a temporary object is used to initialize an object of the same type and the copy constructor of said object has no side effects.

This is in the same class of optimizations as the more popular "as if" rule. That rule allows the compiler to get away with nearly anything it wants, as long as the observable behavior of the resulting program is the same "as if" the standard had been followed exactly.

Here is an example program. On gcc 4.4.5 with both -O0 and -O3 this code results in a "1" being printed. I think that GCC is wrong here... some compilers will output "2" indicating a copy took place. This is where things get tricky in trying to detect behavior that is supposed to be undetectable. In one of those compilers, the only way to tell will be to dive into the resulting assembly.

#include <iostream>

struct elision
{
    explicit elision(int i) : v(i) {
    }

    elision(elision const &copy) : v(copy.v+1) {
    }

    int v;
};

int main()
{
    elision e(elision(1));
    std::cout << e.v << std::endl;
    return 0;
}
link|improve this answer
2  
Copy elision is the only exception to the as-if rule... the compiler is not required to consider copy constructor side effects, so 1 and 2 are both valid outputs. – Dennis Zickefoose Oct 1 '11 at 1:15
I'd rather play it safe and wait for move-constructors to become mainstream. – unixman83 Oct 1 '11 at 5:41
feedback

Your Answer

 
or
required, but never shown

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