Consider the following code:
#include <vector>
#include <boost/noncopyable.hpp>
struct A : private boost::noncopyable
{
A(int num, const std::string& name)
: num(num),
name(name)
{
}
A(A&& other)
: num(other.num),
name(std::move(other.name))
{
}
int num;
std::string name;
};
std::vector<A> getVec()
{
std::vector<A> vec;
vec.emplace_back(A(3, "foo"));
// vec.emplace_back(3, "foo"); not available yet in VS10?
return vec; // error, copy ctor inaccessible
}
int main ( int argc, char* argv[] )
{
// should call std::vector::vector(std::vector&& other)
std::vector<A> vec = getVec();
return 0;
}
This does not compile under VS2010 because obviously A is noncopyable and thus std::vector<A> cannot be copied. Accordingly I cannot return a std::vector<A> from a function.
However it doesn't feel right to me that this sort of thing is not possible considering the concept of RVO. If Return Value Optimization was applied here, copy construction could be omitted and the call to getVec() would be valid.
So what would be the proper way to do this? Is this possible at all in VS2010 / C++11?
num, thenname) do not match the order of the declarations of the data members at the bottom of the class (firstname, thennum). In general, this can lead to very surprising bugs, so I would always strife to make the orders consistent. – FredOverflow Jul 23 '12 at 8:17std::vector<A> vec = getVec();is not an assignment, but an initialization (copy initialization, to be exact). – FredOverflow Jul 23 '12 at 8:18