我有一个函数调用
class MyClass {
static std::string getName(void) {
return getMyName(void); // Returning by value as well
}
};
现在如果我在类的构造函数中使用这个函数
class AnotherClass {
public:
AnotherClass(void) :
m_name(std::move(MyClass::getName())) {} // 1. std::move used
const std::string& name(void) const { // 2. Should I use std::string&& (without consts)
// .... but I also need to make sure value cannot be changed (e.g, name() = "blah";)
// if std::string&& will be used should I use it simply by calling name() to call function using move or should I leave it as is?
return m_name;
}
private:
std::string m_name;
}
这是移动语义的正确用法吗?如何确保函数使用移动语义?
我正在尝试通过移动语义来学习实现效率,如果它是愚蠢的问题,请道歉。
我检查过
http://www.cprogramming.com/c++11/rvalue-references-and-move-semantics-in-c++11.html
一个很好的解释,但需要澄清确保函数是否使用移动语义。