假设我有以下类,其方法为set_value
。哪种实施更好?
class S {
public:
// a set_value method
private:
Some_type value;
};
void S::set_value(Some_type value)
{
this->value = std::move(value);
}
void S::set_value(const Some_type& value)
{
this->value = value;
}
void S::set_value(Some_type&& value)
{
this->value = std::move(value);
}
第一种方法只需要定义一种方法,而第二种方法需要两种方法。
然而,第一种方法似乎效率较低:
对于第二种方法,只执行一次赋值操作。
那么,哪种实施更好?或者它是否重要?
还有一个问题:以下代码是否等同于第二种方法中的两个重载方法?
template <class T>
void S::set_value(T&& value)
{
this->value = std::forward<T>(value);
}
答案 0 :(得分:0)
编译器可以自由地(优化掉)副本,即使这样做会产生副作用。因此,传递值并移动结果实际上为您提供了双方法解决方案的所有性能优势,同时只为您提供了一个维护代码路径。你应该绝对喜欢传递价值。
这是一个证明它的例子:
#include <iostream>
struct XYZ {
XYZ() { std::cout << "constructed" << std::endl; }
XYZ(const XYZ&) {
std::cout << "copy constructed" << std::endl;
}
XYZ(XYZ&&) noexcept {
try {
std::cout << "move constructed" << std::endl;
}
catch(...) {
}
}
XYZ& operator=(const XYZ&) {
std::cout << "assigned" << std::endl;
return *this;
}
XYZ& operator=(XYZ&&) {
std::cout << "move-assigned" << std::endl;
return *this;
}
};
struct holder {
holder(XYZ xyz) : _xyz(std::move(xyz)) {}
void set_value(XYZ xyz) { _xyz = std::move(xyz); }
void set_value_by_const_ref(const XYZ& xyz) { _xyz = xyz; }
XYZ _xyz;
};
using namespace std;
auto main() -> int
{
cout << "** create named source for later use **" << endl;
XYZ xyz2{};
cout << "\n**initial construction**" << std::endl;
holder h { XYZ() };
cout << "\n**set_value()**" << endl;
h.set_value(XYZ());
cout << "\n**set_value_by_const_ref() with nameless temporary**" << endl;
h.set_value_by_const_ref(XYZ());
cout << "\n**set_value() with named source**" << endl;
h.set_value(xyz2);
cout << "\n**set_value_by_const_ref() with named source**" << endl;
h.set_value_by_const_ref(xyz2);
return 0;
}
预期产出:
** create named source for later use **
constructed
**initial construction**
constructed
move constructed
**set_value()**
constructed
move-assigned
**set_value_by_const_ref() with nameless temporary**
constructed
assigned
**set_value() with named source**
copy constructed
move-assigned
**set_value_by_const_ref() with named source**
assigned
请注意,在复制/移动版本中没有任何冗余副本,但在使用无名临时版本调用set_value_by_const_ref()
时,会使用冗余副本分配。我注意到最终案例的明显效率增益。我认为(a)它是现实中的一个极端情况,(b)优化者可以照顾它。
我的命令行:
c++ -o move -std=c++1y -stdlib=libc++ -O3 move.cpp