Is there a preferred practice for passing constructor parameters? In particular if those constructor parameters are used to initialize member variables.
A simplified example.
class Example
{
public:
Example( /*type-1*/ str, /*type-2*/ v ):
m_str( str ),
m_v( v )
{ }
/* other methods */
private:
std::string m_str;
std::complex<float> m_v;
};
The options are:
- pass-by-value, then
std::movethe object into the member. const&, then copy the parameter into the member.&&, then initialize the member with the parameter.
What should be my default/preferred parameter passing style?
Does it change with different parameter types?
My intuition says use rvalue-references, but I'm not sure I understand all the pros and cons.
Example(std::string&& str) : m_str(str) {}will make a copy not a move. Just to make that clear. – R. Martinho Fernandes Oct 4 '11 at 16:14std::string's move constructor? Why would it prefer to copy instead of move? Wouldstd::forwardfix this? – deft_code Oct 4 '11 at 16:24Example(std::string&& str) : m_str(std::move(str)) {}moves. – R. Martinho Fernandes Oct 4 '11 at 16:28std::moveis a way to tell the compiler that you know what you are doing and that the object will not be accessed afterwards (or that it is safe to be accessed afterwards). Also, if youstd::movein the ctor initializer list, you should take care to use the class member in the body, not the ctor parameter. – Michael Price Oct 31 '11 at 17:32