3

根据此页面: http ://womble.decadent.org.uk/c++/template-faq.html#non-dependent “非依赖名称是那些被认为不依赖于模板参数的名称,加上名称模板本身和在其中声明的名称(成员、朋友和局部变量)”

这似乎得到了以下代码被认为是有效的事实的支持(LLVM/Comeau)

template<typename T>
struct Template
{
    typedef int I;
    typedef Template::I Type; // 'Template' is NOT dependent
    typedef Template<T>::I Type2; // 'Template<T>' is NOT dependent
    Template<T>* m;
    void f()
    {
        m->f(); // 'm' is NOT dependent
    }
};

花一些时间阅读 C++ 98 标准后,我找不到指定此行为的位置。我希望在“temp.nondep”下找到提及这一点。

4

1 回答 1

1

C++98 标准没有定义“非依赖”、“非依赖”或“不依赖”名称的确切含义(您可以在标准文本中找到所有三种形式)。

相反,它选择定义哪些名称和类型取决于 14.6 [temp.res] 及其子章节中的模板参数。应用简单的逻辑......所有不依赖的东西都是不依赖的。仅阅读 14.6.3 [temp.nondep] 无济于事。

于 2012-09-22T13:57:21.870 回答