Sorry if this has been asked before, but as I understand it, in C++11, std::vector has a move constructor so that copies cost hardly anything in certain situations, like returning one by value. However, if I have a class like this, with a vector as a member variable:
class MyClass {
public:
MyClass() { }
MyClass(const MyClass& rhs) { }
// other interfaces
private:
std::vector<int> myvec;
// implementation
};
And have a function which returns one of these by value, such as
MyClass somefunc() {
MyClass mc;
// fill mc.myvec with thousands (maybe even millions) of ints
return mc;
}
Will the move constructor of mc.myvec be called and the move constructor of std::vector taken advantage of even though MyClass itself doesn't know anything about move constructors? Or will the copy constructor of vector be called and all those thousands (maybe even millions) of ints have to be copied one by one?
MyClass mc; /* other code */ if (something) { mc = somefunc(); } else { mc = someotherfunc(); }, or otherwise uses the return value of the function as the RHS of an assignment, then NRVO doesn't prevent the copy assignment. If you're going to write functions that rely on NRVO for basic efficiency, you need to make sure that the class either moves efficiently or can be efficiently swapped, to catch cases where NRVO is not applicable. – Steve Jessop Nov 24 '11 at 9:36