使用ref限定符实现方法

时间:2014-05-06 08:57:02

标签: c++ c++11

我无法实现以下代码

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.

Coliru

1 个答案:

答案 0 :(得分:13)

return getVector(); // not compile

这相当于:

return this->getVector(); // not compile

不会编译,因为this是左值,而不是右值,getVector()只能在右值上调用,因此错误。

请注意,this 总是左值 - 甚至在rvalue-ref成员函数内!


return std::move(*this).getVector();

这是调用getVector()的正确方法。