我无法实现以下代码
template <class T>
struct Foo
{
std::vector<T> vec;
std::vector<T> getVector() && {
// fill vector if empty
// and some other work
return std::move(vec);
}
std::vector<T> getVectorAndMore() &&
{
// do some more work
//return getVector(); // not compile
return std::move(*this).getVector(); // seems wrong to me
}
};
int main()
{
Foo<int> foo;
auto vec = std::move(foo).getVectorAndMore();
}
问题是我无法在getVector
内拨打getVectorAndMore
,因为this
不是右值。为了使代码编译,我必须将this
转换为rvalue。
有没有什么好方法可以实现这样的代码?
return getVector();
错误消息是
main.cpp:17:16: error: cannot initialize object parameter of type 'Foo<int>' with an expression of type 'Foo<int>'
return getVector(); // not compile
^~~~~~~~~
main.cpp:26:31: note: in instantiation of member function 'Foo<int>::getVectorAndMore' requested here
auto vec = std::move(foo).getVectorAndMore();
^
1 error generated.
答案 0 :(得分:13)
return getVector(); // not compile
这相当于:
return this->getVector(); // not compile
不会编译,因为this
是左值,而不是右值,getVector()
只能在右值上调用,因此错误。
请注意,this
总是左值 - 甚至在rvalue-ref成员函数内!
return std::move(*this).getVector();
这是调用getVector()
的正确方法。