I'm a bit confused regarding the difference between push_back and emplace_back.

void emplace_back(Type&& _Val);
void push_back(const Type& _Val);
void push_back(Type&& _Val);

As there is a push_back overload taking a rvalue reference I don't quite see what the purpose of emplace_back becomes?

link|improve this question

4  
Some good reading here: open-std.org/jtc1/sc22/wg21/docs/papers/2008/n2642.pdf – kotlinski Nov 29 '10 at 14:00
2  
Note that (as Thomas says below), the code in the question is from MSVS's emulation of C++0x, not what C++0x actually is. – me22 Dec 21 '10 at 5:50
feedback

2 Answers

up vote 38 down vote accepted

emplace_back shouldn't take an argument of type vector::value_type, but instead variadic arguments that are forwarded to the constructor of the appended item.

template <class... Args> void emplace_back(Args&&... args); 

It is possible to pass a value_type which will be forwarded to the copy constructor.

Because it forwards the arguments, this means that if you don't have rvalue, this still means that the container will store a "copied" copy, not a moved copy.

 std::vector<std::string> vec;
 vec.emplace_back(std::string("Hello")); // moves
 std::string s;
 vec.emplace_back(s); //copies

But the above should be identical to what push_back does. It is probably rather meant for use cases like:

 std::vector<std::pair<std::string, std::string> > vec;
 vec.emplace_back(std::string("Hello"), std::string("world")); 
 // should end up invoking this constructor:
 //template<class U, class V> pair(U&& x, V&& y);
 //without making any copies of the strings
link|improve this answer
You would need to use vec.emplace_back(std::move(s)); since s is an lvalue to get the move behavior – David Nov 29 '10 at 12:57
2  
@David: but then you have a moved s in scope, isn't that dangerous ? – Matthieu M. Nov 29 '10 at 17:56
1  
It's not dangerous if you don't plan on using s any longer for its value. Moving does not make s invalid, the move will only steal the internal memory allocation already done in s and leave it in a defaulted state (no sting allocated) which when destructed will be fine as if you had just typed std::string str; – David Nov 30 '10 at 0:52
1  
@David: I'm not sure that a moved-from object is required to be valid for any use except subsequent destruction. – Ben Voigt Dec 12 '10 at 1:31
6  
vec.emplace_back("Hello") will work, since the const char* argument will be forwarded to the string constructor. This is the whole point of emplace_back. – Alexandre C. Aug 9 '11 at 20:28
show 3 more comments
feedback

In addition of what visitor said :

The function void emplace_back(Type&& _Val) provided by MSCV10 is non conforming and redundant, because as you noted it is stricly equivalent to push_back(Type&& _Val).

But the real C++0x form of emplace_back is really useful: void emplace_back(Args&&...);

Instead of taking a value_type it takes a variadic list of arguments, so that mean that you can now perfectly forward the argument and construct directly an object into a container without temporary at all.

That's useful, Because no matter how much cleverness RVO and move semantic bring to the table there is still complicated cases where a push_back is likely to make unnecessary copies (or move). For example, with the traditional insert() function of a std::map, you have to create a temporary, wich will then be copied into a std::pair<Key, Value>, which will then be copied into the map :

std::map<int, Complicated> m;
int anInt = 4;
double aDouble = 5.0;
std::string aString = "C++";

// cross your finger so that the optimzer is really good
m.insert(std::make_pair(4, Complicated(anInt, aDouble, aString))); 

// should be easier for the optimizer
m.emplace(4, anInt, aDouble, aString);

So why they didn't implement the right version of emplace_back in MSVC ? Actually it bugged me too a while ago, so I asked the same question on the Visual C++ blog. Here is the answer from Stephan T Lavavej, the official maintainer of the Visual C++ standard library implementation at Microsoft.

Q : Are beta 2 emplace functions just some kind of placeholder right now ?

A : As you may know, variadic templates aren't implemented in VC10. We simulate them with preprocessor machinery for things like make_shared<T>(), tuple, and the new things in <functional>. This preprocessor machinery is relatively difficult to use and maintain. Also, it significantly affects compilation speed, as we have to repeatedly include subheaders. Due to a combination of our time constraints and compilation speed concerns, we haven't simulated variadic templates in our emplace functions.

When variadic templates are implemented in the compiler, you can expect that we'll take advantage of them in the libraries, including in our emplace functions. We take conformance very seriously, but unfortunately we can't do everything all at once.

It's an understandable decision. Everyone who tried just once to emulate variadic template with preprocessor horrible tricks know how disgusting this stuff gets.

link|improve this answer
1  
That clarification that it's a MSVS10 issue, not a C++ issue is the most important part here. Thanks. – me22 Dec 21 '10 at 5:49
Thomas, this is the correct answer. visitor answer is misleading because it suggests that emplace_push will do a move constructor (which is still a copy, even if a lighter one). The real point of emplace_push is to use already existing constructors (not necessarily move) in the class and forward the parameters to that: no extra constructor invoked in the middle other than the one invoked directly on the container – lurscher Jan 17 at 16:31
feedback

Your Answer

 
or
required, but never shown

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