模板内部类中的C ++ decltype

时间:2017-06-21 13:44:37

标签: c++ templates inner-classes decltype

我的问题通过以下示例说明:

#include <vector>

    template <class T>
    class TestNest{
    public:
        std::vector<T> m_list;
        class InsideNest{
            const TestNest<T>* m_test;
            decltype(m_test->m_list.begin()) m_iter;
        public:
            InsideNest(const TestNest<T>* source)
                :m_test(source)
                ,m_iter(source->m_list.begin())
            {}
        };
    };

int main(int argc, char *argv[])
{
    TestNest<int> outside;
    TestNest<int>::InsideNest inside(&outside);
}

未编译的部分(至少在MSVC2013中没有)是decltype(m_test->m_list.begin())。知道如何解决这个问题吗?

编辑:更改代码以显示main()和#include

1 个答案:

答案 0 :(得分:0)

关闭此问题。这是MSVC2013的缺点。它将在“计算”完整类型的成员之前解析decltype(),因此在decltype中,对方法的任何访问都是编译器错误。 即使使用全局模板函数(例如decltype(std::begin(m_list)))也不起作用。 其他更现代的编译器工作。