为什么decltype(* this)没有返回正确的类型?

时间:2013-02-28 10:53:32

标签: c++ c++11 compiler-errors overloading decltype

以下代码是使用VC ++ 2012年11月的CTP编译的。但是编译器发出警告。

我只是想知道这是否是VC ++ 2012年11月CTP的错误。

struct A
{
    int n;

    A(int n)
        : n(n)
    {}

    int Get() const
    {
        return n;
    }

    int Get()
    {
        //
        // If using "static_cast<const A&>(*this).Get();" instead, then OK.
        //
        return static_cast<const decltype(*this)&>(*this).Get(); // Warning!
    }
};

int main()
{
    A a(8);

    //
    // warning C4717: 'A::Get' : recursive on all control paths,
    // function will cause runtime stack overflow
    //
    a.Get(); 
}

1 个答案:

答案 0 :(得分:17)

decltype应用于不是id-expression的表达式会为您提供引用,因此decltype(*this)已经A&,您无法再次const 。如果你真的想使用decltype,你可以这样做:

static_cast<std::decay<decltype(*this)>::type const &>(*this)

甚至这个:

static_cast<std::add_lvalue_reference<
                 std::add_const<
                      std::decay<decltype(*this)>::type
                 >::type
            >::type
>(*this)

当然,只说static_cast<A const &>(*this)就简单得多了。