I was wondering in which situations I still need to use const references in parameters since C++11. I don't fully understand move semantics but I think this is a legit question. This question is meant for only the situations where a const reference replaces a copy being made while it is only needed to "read" the value (e.g. usage of const member functions).
Normally I would write a (member)function like this:
#include <vector>
template<class T>
class Vector {
std::vector<T> _impl;
public:
void add(const T& value) {
_impl.push_back(value);
}
};
But I'm thinking that it's safe to assume that to compiler would optimize it using move semantics if I write it like this and class T
ofcourse implements a move constructor:
#include <vector>
template<class T>
class Vector {
std::vector<T> _impl;
public:
void add(T value) {
_impl.push_back(value);
}
};
Am I right? If so, is it safe to assume it can be used in any situation? If not, I would like to know which. This would make life much easier since I wouldn't have to implement an class specialization for fundamental types for example, besides it looks much cleaner.
The solution you propose:
Would require some adjustment, since this way you do always end up performing one copy of
value
, even if you pass an rvalue toadd()
(two copies if you pass an lvalue): sincevalue
is an lvalue, the compiler won't automatically move from it when you pass it as an argument topush_back
.Instead, you should do this:
This is better, but still not sufficiently good for template code, because you do not know if
T
is cheap or expensive to move. IfT
is a POD like this:Then moving it won't be any faster than copying it (in fact, moving it would be the same thing as copying it). Because your generic code is supposed to avoid unnecessary operations (and that's because those operations may be expensive for some types), you cannot afford taking the parameter by value.
One possible solution (the one adopted by the C++ standard library) is to provide two overloads of
add()
, one taking an lvalue reference and one taking an rvalue reference:Another possibility is to provide a (possibly SFINAE-constrained) perfect-forwarding template version of
add()
that would accept a so-called universal reference (non-standard term coined by Scott Meyers):Both these solutions are optimal in the sense that only one copy is performed when lvalues are provided, and only one move is performed when rvalues are provided.