为什么Visual Studio 2013遇到此类成员decltype的问题?

时间:2014-07-03 21:30:58

标签: c++ visual-c++ c++11 visual-studio-2013 decltype

#include <vector>

struct C
{
    std::vector<int> v;
    decltype(v.begin()) begin() { return v.begin(); }
    decltype(v.end()) end() { return v.end(); }
};

Clang ++没有问题,但是MSVC 2013会出现以下错误:

error C2228: left of '.begin' must have class/struct/union

1 个答案:

答案 0 :(得分:19)

这是VS2013中的一个已知错误,VS2015中的fixed 。如果您使用尾随返回类型,编译器将接受代码。

struct C
{
    std::vector<int> v;
    auto begin() -> decltype(v.begin()) { return v.begin(); }
    auto end()   -> decltype(v.end())   { return v.end(); }
};

正如错误报告所述,另一种解决方法是使用:

struct C
{
    std::vector<int> v;
    decltype(std::declval<decltype(v)>().begin()) begin() { return v.begin(); }
    decltype(std::declval<decltype(v)>().end())   end()   { return v.end(); }
};

但正如@BenVoigt在评论中指出read this answer为什么尾随返回类型应该是首选选项。


在链接页面中搜索 C ++ decltype类成员访问未完全实现