consider this classes:
class A
{
string test;
public:
A (string _t) : test(move(_t)) {}
A (const A & other) { *this = other; }
A (A && other) { *this = move(other); }
A & operator = (const A & other)
{
cerr<<"copying A"<<endl;
test = other.test;
return *this;
}
A & operator = (A && other)
{
cerr<<"move A"<<endl;
test = other.test;
return *this;
}
};
class B
{
A a;
public:
B (A && _a) : a(move(_a)) {}
B (A const & _a) : a(_a) {}
};
When creating a B, I always have an optimal forward path for A, one move for rvalues or one copy for lvalues.
Is it possible to achieve the same result with one constructor? It's not a big problem in this case, but what about multiple parameters? I would need combinations of every possible occurrence of lvalues and rvalues in the parameter list.
This is not limited to constructors, but also applies to function parameters (e.g. setters).
edit: This question is strictly about class B, class A is only there to visualize how the copy/move calls gets executed.